date = $date; } /** * @return string */ public function getDate() { return $this->date; } /** * @param string */ public function setDateTime($dateTime) { $this->dateTime = $dateTime; } /** * @return string */ public function getDateTime() { return $this->dateTime; } /** * @param string */ public function setTimeZone($timeZone) { $this->timeZone = $timeZone; } /** * @return string */ public function getTimeZone() { return $this->timeZone; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EventDateTime::class, 'Google_Service_Calendar_EventDateTime');