public static function EdgeEntityInterface::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).
1 method overrides EdgeEntityInterface::uniqueIdProperties()
- EdgeEntityBase::uniqueIdProperties in src/
Entity/ EdgeEntityBase.php - Returns all unique ids how an entity can be referenced in Apigee Edge.
File
- src/
Entity/ EdgeEntityInterface.php, line 56
Class
- EdgeEntityInterface
- Interface EdgeEntityInterface.
Namespace
Drupal\apigee_edge\EntityCode
public static function uniqueIdProperties() : array;