_propDict)) { if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) { return $this->_propDict["lastModifiedDateTime"]; } else { $this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]); return $this->_propDict["lastModifiedDateTime"]; } } return null; } /** * Sets the lastModifiedDateTime * The state modified time in UTC. * * @param \DateTime $val The value to assign to the lastModifiedDateTime * * @return CallTranscriptionInfo The CallTranscriptionInfo */ public function setLastModifiedDateTime($val) { $this->_propDict["lastModifiedDateTime"] = $val; return $this; } /** * Gets the state * Possible values are: notStarted, active, inactive. * * @return CallTranscriptionState|null The state */ public function getState() { if (array_key_exists("state", $this->_propDict)) { if (is_a($this->_propDict["state"], "\Microsoft\Graph\Model\CallTranscriptionState") || is_null($this->_propDict["state"])) { return $this->_propDict["state"]; } else { $this->_propDict["state"] = new CallTranscriptionState($this->_propDict["state"]); return $this->_propDict["state"]; } } return null; } /** * Sets the state * Possible values are: notStarted, active, inactive. * * @param CallTranscriptionState $val The value to assign to the state * * @return CallTranscriptionInfo The CallTranscriptionInfo */ public function setState($val) { $this->_propDict["state"] = $val; return $this; } }