public function SmsMessage::getUuid in SMS Framework 2.x
Same name in this branch
- 2.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getUuid()
- 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getUuid()
Same name and namespace in other branches
- 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getUuid()
- 2.1.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getUuid()
Gets the UUID of the SMS object.
Return value
string The UUID of the SMS object.
Overrides SmsMessageInterface::getUuid
File
- src/
Message/ SmsMessage.php, line 287
Class
- SmsMessage
- Basic implementation of an SMS message.
Namespace
Drupal\sms\MessageCode
public function getUuid() {
return $this->uuid;
}