_propDict)) { if (is_a($this->_propDict["startedDateTime"], "\DateTime") || is_null($this->_propDict["startedDateTime"])) { return $this->_propDict["startedDateTime"]; } else { $this->_propDict["startedDateTime"] = new \DateTime($this->_propDict["startedDateTime"]); return $this->_propDict["startedDateTime"]; } } return null; } /** * Sets the startedDateTime * The date and time on which the self-initiated course was started by the learner. Optional. * * @param \DateTime $val The startedDateTime * * @return LearningSelfInitiatedCourse */ public function setStartedDateTime($val) { $this->_propDict["startedDateTime"] = $val; return $this; } }