You are here

public static function App::uniqueIdProperties in Apigee Edge 8

Returns all unique ids how an entity can be referenced in Apigee Edge.

All these ids can be used in Drupal to load entity as well.

Ex.: Developer can be referenced by its UUID or its email address.

Return value

string[] Array of entity properties that stores unique entity ids. Returned properties must have a public getter, ex.: 'get' . ucfirst($property).

Overrides EdgeEntityBase::uniqueIdProperties

File

src/Entity/App.php, line 457

Class

App
Base class for App Drupal entities.

Namespace

Drupal\apigee_edge\Entity

Code

public static function uniqueIdProperties() : array {
  return array_merge(parent::uniqueIdProperties(), [
    'appId',
  ]);
}