setODataType("#microsoft.graph.educationAssignmentIndividualRecipient"); } /** * Gets the recipients * A collection of IDs of the recipients. * * @return string|null The recipients */ public function getRecipients() { if (array_key_exists("recipients", $this->_propDict)) { return $this->_propDict["recipients"]; } else { return null; } } /** * Sets the recipients * A collection of IDs of the recipients. * * @param string $val The value of the recipients * * @return EducationAssignmentIndividualRecipient */ public function setRecipients($val) { $this->_propDict["recipients"] = $val; return $this; } }