Google_EventDateTime
The Google Pagespeed Insights Google EventDateTime class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_CalendarService.php
- class Google_EventDateTime extends Google_Model {
- public $date;
- public $dateTime;
- public $timeZone;
- public function setDate($date) {
- $this->date = $date;
- }
- public function getDate() {
- return $this->date;
- }
- public function setDateTime($dateTime) {
- $this->dateTime = $dateTime;
- }
- public function getDateTime() {
- return $this->dateTime;
- }
- public function setTimeZone($timeZone) {
- $this->timeZone = $timeZone;
- }
- public function getTimeZone() {
- return $this->timeZone;
- }
- }