_propDict)) { return $this->_propDict["courseNumber"]; } else { return null; } } /** * Sets the courseNumber * Unique identifier for the course. * * @param string $val The value of the courseNumber * * @return EducationCourse */ public function setCourseNumber($val) { $this->_propDict["courseNumber"] = $val; return $this; } /** * Gets the description * Description of the course. * * @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 * Description of the course. * * @param string $val The value of the description * * @return EducationCourse */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the displayName * Name of the course. * * @return string|null The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * Name of the course. * * @param string $val The value of the displayName * * @return EducationCourse */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the externalId * ID of the course from the syncing system. * * @return string|null The externalId */ public function getExternalId() { if (array_key_exists("externalId", $this->_propDict)) { return $this->_propDict["externalId"]; } else { return null; } } /** * Sets the externalId * ID of the course from the syncing system. * * @param string $val The value of the externalId * * @return EducationCourse */ public function setExternalId($val) { $this->_propDict["externalId"] = $val; return $this; } /** * Gets the subject * Subject of the course. * * @return string|null The subject */ public function getSubject() { if (array_key_exists("subject", $this->_propDict)) { return $this->_propDict["subject"]; } else { return null; } } /** * Sets the subject * Subject of the course. * * @param string $val The value of the subject * * @return EducationCourse */ public function setSubject($val) { $this->_propDict["subject"] = $val; return $this; } }