setODataType("#microsoft.graph.connectedOrganizationMembers"); } /** * Gets the connectedOrganizationId * The ID of the connected organization in entitlement management. * * @return string|null The connectedOrganizationId */ public function getConnectedOrganizationId() { if (array_key_exists("connectedOrganizationId", $this->_propDict)) { return $this->_propDict["connectedOrganizationId"]; } else { return null; } } /** * Sets the connectedOrganizationId * The ID of the connected organization in entitlement management. * * @param string $val The value of the connectedOrganizationId * * @return ConnectedOrganizationMembers */ public function setConnectedOrganizationId($val) { $this->_propDict["connectedOrganizationId"] = $val; return $this; } /** * Gets the description * The name of the connected organization. * * @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 connected organization. * * @param string $val The value of the description * * @return ConnectedOrganizationMembers */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } }