_propDict)) { return $this->_propDict["dateTime"]; } else { return null; } } /** * Sets the dateTime * A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). * * @param string $val The value of the dateTime * * @return DateTimeTimeZone */ public function setDateTime($val) { $this->_propDict["dateTime"] = $val; return $this; } /** * Gets the timeZone * Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. * * @return string|null The timeZone */ public function getTimeZone() { if (array_key_exists("timeZone", $this->_propDict)) { return $this->_propDict["timeZone"]; } else { return null; } } /** * Sets the timeZone * Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. * * @param string $val The value of the timeZone * * @return DateTimeTimeZone */ public function setTimeZone($val) { $this->_propDict["timeZone"] = $val; return $this; } }