_propDict)) { return $this->_propDict["defaultDomainName"]; } else { return null; } } /** * Sets the defaultDomainName * Primary domain name of a Microsoft Entra tenant. * * @param string $val The value of the defaultDomainName * * @return TenantInformation */ public function setDefaultDomainName($val) { $this->_propDict["defaultDomainName"] = $val; return $this; } /** * Gets the displayName * Display name of a Microsoft Entra tenant. * * @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 * Display name of a Microsoft Entra tenant. * * @param string $val The value of the displayName * * @return TenantInformation */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the federationBrandName * Name shown to users that sign in to a Microsoft Entra tenant. * * @return string|null The federationBrandName */ public function getFederationBrandName() { if (array_key_exists("federationBrandName", $this->_propDict)) { return $this->_propDict["federationBrandName"]; } else { return null; } } /** * Sets the federationBrandName * Name shown to users that sign in to a Microsoft Entra tenant. * * @param string $val The value of the federationBrandName * * @return TenantInformation */ public function setFederationBrandName($val) { $this->_propDict["federationBrandName"] = $val; return $this; } /** * Gets the tenantId * Unique identifier of a Microsoft Entra tenant. * * @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 * Unique identifier of a Microsoft Entra tenant. * * @param string $val The value of the tenantId * * @return TenantInformation */ public function setTenantId($val) { $this->_propDict["tenantId"] = $val; return $this; } }