setODataType("#microsoft.graph.groupMembers"); } /** * Gets the description * The name of the group in Microsoft Entra ID. Read only. * * @return string|null The description */ public function getDescription() { if (array_key_exists("description", $this->_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * The name of the group in Microsoft Entra ID. Read only. * * @param string $val The value of the description * * @return GroupMembers */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the groupId * The ID of the group in Microsoft Entra ID. * * @return string|null The groupId */ public function getGroupId() { if (array_key_exists("groupId", $this->_propDict)) { return $this->_propDict["groupId"]; } else { return null; } } /** * Sets the groupId * The ID of the group in Microsoft Entra ID. * * @param string $val The value of the groupId * * @return GroupMembers */ public function setGroupId($val) { $this->_propDict["groupId"] = $val; return $this; } }