public function DeveloperApp::getAppOwner in Apigee Edge 8
Returns the id of the app owner from the app entity.
Return value could be either the developer id or the company name.
Return value
string Id of the app owner, or null if the app is new.
Overrides AppInterface::getAppOwner
File
- src/
Entity/ DeveloperApp.php, line 228
Class
- DeveloperApp
- Defines the Developer app entity class.
Namespace
Drupal\apigee_edge\EntityCode
public function getAppOwner() : ?string {
return $this
->getDeveloperId();
}