You are here

public function App::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/App.php, line 449

Class

App
Base class for App Drupal entities.

Namespace

Drupal\apigee_edge\Entity

Code

public function uuid() {

  // Or $this->id().
  return $this->decorated
    ->getAppId();
}