setODataType("#microsoft.graph.groupAssignmentTarget"); } /** * Gets the groupId * The group Id that is the target of the assignment. * * @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 group Id that is the target of the assignment. * * @param string $val The value of the groupId * * @return GroupAssignmentTarget */ public function setGroupId($val) { $this->_propDict["groupId"] = $val; return $this; } }