setODataType("#microsoft.graph.azureActiveDirectoryTenant"); } /** * Gets the displayName * The name of the Microsoft Entra tenant. Read only. * * @return string|null The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The name of the Microsoft Entra tenant. Read only. * * @param string $val The value of the displayName * * @return AzureActiveDirectoryTenant */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the tenantId * The ID of the Microsoft Entra tenant. 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 ID of the Microsoft Entra tenant. Read only. * * @param string $val The value of the tenantId * * @return AzureActiveDirectoryTenant */ public function setTenantId($val) { $this->_propDict["tenantId"] = $val; return $this; } }