You are here

public function SmsMessage::getUuid in SMS Framework 8

Same name in this branch
  1. 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getUuid()
  2. 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getUuid()
Same name and namespace in other branches
  1. 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getUuid()
  2. 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getUuid()

Gets the UUID of the SMS object.

Return value

string The UUID of the SMS object.

Overrides SmsMessageInterface::getUuid

File

src/Entity/SmsMessage.php, line 275

Class

SmsMessage
Defines the SMS message entity.

Namespace

Drupal\sms\Entity

Code

public function getUuid() {
  return $this
    ->get('uuid')->value;
}