_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The Microsoft Entra ID display name of the customer tenant. Read-only. Supports $orderby. * * @param string $val The displayName * * @return DelegatedAdminCustomer */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the tenantId * The Microsoft Entra ID-assigned tenant ID of the customer. Read-only. * * @return string|null The tenantId */ public function getTenantId() { if (array_key_exists("tenantId", $this->_propDict)) { return $this->_propDict["tenantId"]; } else { return null; } } /** * Sets the tenantId * The Microsoft Entra ID-assigned tenant ID of the customer. Read-only. * * @param string $val The tenantId * * @return DelegatedAdminCustomer */ public function setTenantId($val) { $this->_propDict["tenantId"] = $val; return $this; } /** * Gets the serviceManagementDetails * Contains the management details of a service in the customer tenant that's managed by delegated administration. * * @return array|null The serviceManagementDetails */ public function getServiceManagementDetails() { if (array_key_exists("serviceManagementDetails", $this->_propDict)) { return $this->_propDict["serviceManagementDetails"]; } else { return null; } } /** * Sets the serviceManagementDetails * Contains the management details of a service in the customer tenant that's managed by delegated administration. * * @param DelegatedAdminServiceManagementDetail[] $val The serviceManagementDetails * * @return DelegatedAdminCustomer */ public function setServiceManagementDetails($val) { $this->_propDict["serviceManagementDetails"] = $val; return $this; } }