_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * The description of the external group. Optional. * * @param string $val The description * * @return ExternalGroup */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the displayName * The friendly name of the external group. Optional. * * @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 friendly name of the external group. Optional. * * @param string $val The displayName * * @return ExternalGroup */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the members * A member added to an externalGroup. You can add Microsoft Entra users, Microsoft Entra groups, or an externalGroup as members. * * @return array|null The members */ public function getMembers() { if (array_key_exists("members", $this->_propDict)) { return $this->_propDict["members"]; } else { return null; } } /** * Sets the members * A member added to an externalGroup. You can add Microsoft Entra users, Microsoft Entra groups, or an externalGroup as members. * * @param Identity[] $val The members * * @return ExternalGroup */ public function setMembers($val) { $this->_propDict["members"] = $val; return $this; } }