public function Developer::uuid in Apigee Edge 8
Gets the entity UUID (Universally Unique Identifier).
The UUID is guaranteed to be unique and can be used to identify an entity across multiple systems.
Return value
string|null The UUID of the entity, or NULL if the entity does not have one.
Overrides EntityBase::uuid
File
- src/
Entity/ Developer.php, line 181
Class
- Developer
- Defines the Developer entity class.
Namespace
Drupal\apigee_edge\EntityCode
public function uuid() {
return $this->decorated
->id();
}