_propDict)) { return $this->_propDict["distributeForStudentWork"]; } else { return null; } } /** * Sets the distributeForStudentWork * Indicates whether this resource should be copied to each student submission for modification and submission. Required * * @param bool $val The distributeForStudentWork * * @return EducationAssignmentResource */ public function setDistributeForStudentWork($val) { $this->_propDict["distributeForStudentWork"] = boolval($val); return $this; } /** * Gets the resource * Resource object that has been associated with this assignment. * * @return EducationResource|null The resource */ public function getResource() { if (array_key_exists("resource", $this->_propDict)) { if (is_a($this->_propDict["resource"], "\Microsoft\Graph\Model\EducationResource") || is_null($this->_propDict["resource"])) { return $this->_propDict["resource"]; } else { $this->_propDict["resource"] = new EducationResource($this->_propDict["resource"]); return $this->_propDict["resource"]; } } return null; } /** * Sets the resource * Resource object that has been associated with this assignment. * * @param EducationResource $val The resource * * @return EducationAssignmentResource */ public function setResource($val) { $this->_propDict["resource"] = $val; return $this; } }