123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- <?php
- /*
- * Copyright 2014 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-
- class Google_Service_Calendar_CalendarListEntry extends Google_Collection
- {
- protected $collection_key = 'defaultReminders';
- public $accessRole;
- public $backgroundColor;
- public $colorId;
- protected $conferencePropertiesType = 'Google_Service_Calendar_ConferenceProperties';
- protected $conferencePropertiesDataType = '';
- protected $defaultRemindersType = 'Google_Service_Calendar_EventReminder';
- protected $defaultRemindersDataType = 'array';
- public $deleted;
- public $description;
- public $etag;
- public $foregroundColor;
- public $hidden;
- public $id;
- public $kind;
- public $location;
- protected $notificationSettingsType = 'Google_Service_Calendar_CalendarListEntryNotificationSettings';
- protected $notificationSettingsDataType = '';
- public $primary;
- public $selected;
- public $summary;
- public $summaryOverride;
- public $timeZone;
-
- public function setAccessRole($accessRole)
- {
- $this->accessRole = $accessRole;
- }
- public function getAccessRole()
- {
- return $this->accessRole;
- }
- public function setBackgroundColor($backgroundColor)
- {
- $this->backgroundColor = $backgroundColor;
- }
- public function getBackgroundColor()
- {
- return $this->backgroundColor;
- }
- public function setColorId($colorId)
- {
- $this->colorId = $colorId;
- }
- public function getColorId()
- {
- return $this->colorId;
- }
- /**
- * @param Google_Service_Calendar_ConferenceProperties
- */
- public function setConferenceProperties(Google_Service_Calendar_ConferenceProperties $conferenceProperties)
- {
- $this->conferenceProperties = $conferenceProperties;
- }
- /**
- * @return Google_Service_Calendar_ConferenceProperties
- */
- public function getConferenceProperties()
- {
- return $this->conferenceProperties;
- }
- /**
- * @param Google_Service_Calendar_EventReminder
- */
- public function setDefaultReminders($defaultReminders)
- {
- $this->defaultReminders = $defaultReminders;
- }
- /**
- * @return Google_Service_Calendar_EventReminder
- */
- public function getDefaultReminders()
- {
- return $this->defaultReminders;
- }
- public function setDeleted($deleted)
- {
- $this->deleted = $deleted;
- }
- public function getDeleted()
- {
- return $this->deleted;
- }
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setEtag($etag)
- {
- $this->etag = $etag;
- }
- public function getEtag()
- {
- return $this->etag;
- }
- public function setForegroundColor($foregroundColor)
- {
- $this->foregroundColor = $foregroundColor;
- }
- public function getForegroundColor()
- {
- return $this->foregroundColor;
- }
- public function setHidden($hidden)
- {
- $this->hidden = $hidden;
- }
- public function getHidden()
- {
- return $this->hidden;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setKind($kind)
- {
- $this->kind = $kind;
- }
- public function getKind()
- {
- return $this->kind;
- }
- public function setLocation($location)
- {
- $this->location = $location;
- }
- public function getLocation()
- {
- return $this->location;
- }
- /**
- * @param Google_Service_Calendar_CalendarListEntryNotificationSettings
- */
- public function setNotificationSettings(Google_Service_Calendar_CalendarListEntryNotificationSettings $notificationSettings)
- {
- $this->notificationSettings = $notificationSettings;
- }
- /**
- * @return Google_Service_Calendar_CalendarListEntryNotificationSettings
- */
- public function getNotificationSettings()
- {
- return $this->notificationSettings;
- }
- public function setPrimary($primary)
- {
- $this->primary = $primary;
- }
- public function getPrimary()
- {
- return $this->primary;
- }
- public function setSelected($selected)
- {
- $this->selected = $selected;
- }
- public function getSelected()
- {
- return $this->selected;
- }
- public function setSummary($summary)
- {
- $this->summary = $summary;
- }
- public function getSummary()
- {
- return $this->summary;
- }
- public function setSummaryOverride($summaryOverride)
- {
- $this->summaryOverride = $summaryOverride;
- }
- public function getSummaryOverride()
- {
- return $this->summaryOverride;
- }
- public function setTimeZone($timeZone)
- {
- $this->timeZone = $timeZone;
- }
- public function getTimeZone()
- {
- return $this->timeZone;
- }
- }
|