setODataType("#microsoft.graph.educationSubmissionIndividualRecipient"); } /** * Gets the userId * User ID of the user to whom the submission is assigned. * * @return string|null The userId */ public function getUserId() { if (array_key_exists("userId", $this->_propDict)) { return $this->_propDict["userId"]; } else { return null; } } /** * Sets the userId * User ID of the user to whom the submission is assigned. * * @param string $val The value of the userId * * @return EducationSubmissionIndividualRecipient */ public function setUserId($val) { $this->_propDict["userId"] = $val; return $this; } }