_propDict)) { return $this->_propDict["externalId"]; } else { return null; } } /** * Sets the externalId * ID of the teacher in the source system. * * @param string $val The value of the externalId * * @return EducationTeacher */ public function setExternalId($val) { $this->_propDict["externalId"] = $val; return $this; } /** * Gets the teacherNumber * Teacher number. * * @return string|null The teacherNumber */ public function getTeacherNumber() { if (array_key_exists("teacherNumber", $this->_propDict)) { return $this->_propDict["teacherNumber"]; } else { return null; } } /** * Sets the teacherNumber * Teacher number. * * @param string $val The value of the teacherNumber * * @return EducationTeacher */ public function setTeacherNumber($val) { $this->_propDict["teacherNumber"] = $val; return $this; } }