Açıklama Yok

CalendarListEntry.php 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <?php
  2. /*
  3. * Copyright 2014 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. class Google_Service_Calendar_CalendarListEntry extends Google_Collection
  18. {
  19. protected $collection_key = 'defaultReminders';
  20. public $accessRole;
  21. public $backgroundColor;
  22. public $colorId;
  23. protected $conferencePropertiesType = 'Google_Service_Calendar_ConferenceProperties';
  24. protected $conferencePropertiesDataType = '';
  25. protected $defaultRemindersType = 'Google_Service_Calendar_EventReminder';
  26. protected $defaultRemindersDataType = 'array';
  27. public $deleted;
  28. public $description;
  29. public $etag;
  30. public $foregroundColor;
  31. public $hidden;
  32. public $id;
  33. public $kind;
  34. public $location;
  35. protected $notificationSettingsType = 'Google_Service_Calendar_CalendarListEntryNotificationSettings';
  36. protected $notificationSettingsDataType = '';
  37. public $primary;
  38. public $selected;
  39. public $summary;
  40. public $summaryOverride;
  41. public $timeZone;
  42. public function setAccessRole($accessRole)
  43. {
  44. $this->accessRole = $accessRole;
  45. }
  46. public function getAccessRole()
  47. {
  48. return $this->accessRole;
  49. }
  50. public function setBackgroundColor($backgroundColor)
  51. {
  52. $this->backgroundColor = $backgroundColor;
  53. }
  54. public function getBackgroundColor()
  55. {
  56. return $this->backgroundColor;
  57. }
  58. public function setColorId($colorId)
  59. {
  60. $this->colorId = $colorId;
  61. }
  62. public function getColorId()
  63. {
  64. return $this->colorId;
  65. }
  66. /**
  67. * @param Google_Service_Calendar_ConferenceProperties
  68. */
  69. public function setConferenceProperties(Google_Service_Calendar_ConferenceProperties $conferenceProperties)
  70. {
  71. $this->conferenceProperties = $conferenceProperties;
  72. }
  73. /**
  74. * @return Google_Service_Calendar_ConferenceProperties
  75. */
  76. public function getConferenceProperties()
  77. {
  78. return $this->conferenceProperties;
  79. }
  80. /**
  81. * @param Google_Service_Calendar_EventReminder
  82. */
  83. public function setDefaultReminders($defaultReminders)
  84. {
  85. $this->defaultReminders = $defaultReminders;
  86. }
  87. /**
  88. * @return Google_Service_Calendar_EventReminder
  89. */
  90. public function getDefaultReminders()
  91. {
  92. return $this->defaultReminders;
  93. }
  94. public function setDeleted($deleted)
  95. {
  96. $this->deleted = $deleted;
  97. }
  98. public function getDeleted()
  99. {
  100. return $this->deleted;
  101. }
  102. public function setDescription($description)
  103. {
  104. $this->description = $description;
  105. }
  106. public function getDescription()
  107. {
  108. return $this->description;
  109. }
  110. public function setEtag($etag)
  111. {
  112. $this->etag = $etag;
  113. }
  114. public function getEtag()
  115. {
  116. return $this->etag;
  117. }
  118. public function setForegroundColor($foregroundColor)
  119. {
  120. $this->foregroundColor = $foregroundColor;
  121. }
  122. public function getForegroundColor()
  123. {
  124. return $this->foregroundColor;
  125. }
  126. public function setHidden($hidden)
  127. {
  128. $this->hidden = $hidden;
  129. }
  130. public function getHidden()
  131. {
  132. return $this->hidden;
  133. }
  134. public function setId($id)
  135. {
  136. $this->id = $id;
  137. }
  138. public function getId()
  139. {
  140. return $this->id;
  141. }
  142. public function setKind($kind)
  143. {
  144. $this->kind = $kind;
  145. }
  146. public function getKind()
  147. {
  148. return $this->kind;
  149. }
  150. public function setLocation($location)
  151. {
  152. $this->location = $location;
  153. }
  154. public function getLocation()
  155. {
  156. return $this->location;
  157. }
  158. /**
  159. * @param Google_Service_Calendar_CalendarListEntryNotificationSettings
  160. */
  161. public function setNotificationSettings(Google_Service_Calendar_CalendarListEntryNotificationSettings $notificationSettings)
  162. {
  163. $this->notificationSettings = $notificationSettings;
  164. }
  165. /**
  166. * @return Google_Service_Calendar_CalendarListEntryNotificationSettings
  167. */
  168. public function getNotificationSettings()
  169. {
  170. return $this->notificationSettings;
  171. }
  172. public function setPrimary($primary)
  173. {
  174. $this->primary = $primary;
  175. }
  176. public function getPrimary()
  177. {
  178. return $this->primary;
  179. }
  180. public function setSelected($selected)
  181. {
  182. $this->selected = $selected;
  183. }
  184. public function getSelected()
  185. {
  186. return $this->selected;
  187. }
  188. public function setSummary($summary)
  189. {
  190. $this->summary = $summary;
  191. }
  192. public function getSummary()
  193. {
  194. return $this->summary;
  195. }
  196. public function setSummaryOverride($summaryOverride)
  197. {
  198. $this->summaryOverride = $summaryOverride;
  199. }
  200. public function getSummaryOverride()
  201. {
  202. return $this->summaryOverride;
  203. }
  204. public function setTimeZone($timeZone)
  205. {
  206. $this->timeZone = $timeZone;
  207. }
  208. public function getTimeZone()
  209. {
  210. return $this->timeZone;
  211. }
  212. }