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 |
|
---|
18 | namespace Google\Service\CloudSearch;
|
---|
19 |
|
---|
20 | class EnterpriseTopazSidekickAgendaEntry extends \Google\Collection
|
---|
21 | {
|
---|
22 | protected $collection_key = 'invitee';
|
---|
23 | /**
|
---|
24 | * @var string
|
---|
25 | */
|
---|
26 | public $agendaItemUrl;
|
---|
27 | /**
|
---|
28 | * @var string
|
---|
29 | */
|
---|
30 | public $chronology;
|
---|
31 | protected $creatorType = EnterpriseTopazSidekickPerson::class;
|
---|
32 | protected $creatorDataType = '';
|
---|
33 | /**
|
---|
34 | * @var string
|
---|
35 | */
|
---|
36 | public $currentUserAttendingStatus;
|
---|
37 | /**
|
---|
38 | * @var string
|
---|
39 | */
|
---|
40 | public $description;
|
---|
41 | protected $documentType = EnterpriseTopazSidekickCommonDocument::class;
|
---|
42 | protected $documentDataType = 'array';
|
---|
43 | /**
|
---|
44 | * @var string
|
---|
45 | */
|
---|
46 | public $endDate;
|
---|
47 | /**
|
---|
48 | * @var string
|
---|
49 | */
|
---|
50 | public $endTime;
|
---|
51 | /**
|
---|
52 | * @var string
|
---|
53 | */
|
---|
54 | public $endTimeMs;
|
---|
55 | /**
|
---|
56 | * @var string
|
---|
57 | */
|
---|
58 | public $eventId;
|
---|
59 | /**
|
---|
60 | * @var bool
|
---|
61 | */
|
---|
62 | public $guestsCanInviteOthers;
|
---|
63 | /**
|
---|
64 | * @var bool
|
---|
65 | */
|
---|
66 | public $guestsCanModify;
|
---|
67 | /**
|
---|
68 | * @var bool
|
---|
69 | */
|
---|
70 | public $guestsCanSeeGuests;
|
---|
71 | /**
|
---|
72 | * @var string
|
---|
73 | */
|
---|
74 | public $hangoutId;
|
---|
75 | /**
|
---|
76 | * @var string
|
---|
77 | */
|
---|
78 | public $hangoutUrl;
|
---|
79 | protected $inviteeType = EnterpriseTopazSidekickPerson::class;
|
---|
80 | protected $inviteeDataType = 'array';
|
---|
81 | /**
|
---|
82 | * @var bool
|
---|
83 | */
|
---|
84 | public $isAllDay;
|
---|
85 | /**
|
---|
86 | * @var string
|
---|
87 | */
|
---|
88 | public $lastModificationTimeMs;
|
---|
89 | /**
|
---|
90 | * @var string
|
---|
91 | */
|
---|
92 | public $location;
|
---|
93 | /**
|
---|
94 | * @var bool
|
---|
95 | */
|
---|
96 | public $notifyToUser;
|
---|
97 | /**
|
---|
98 | * @var bool
|
---|
99 | */
|
---|
100 | public $otherAttendeesExcluded;
|
---|
101 | /**
|
---|
102 | * @var bool
|
---|
103 | */
|
---|
104 | public $requesterIsOwner;
|
---|
105 | /**
|
---|
106 | * @var bool
|
---|
107 | */
|
---|
108 | public $showFullEventDetailsToUse;
|
---|
109 | /**
|
---|
110 | * @var string
|
---|
111 | */
|
---|
112 | public $startDate;
|
---|
113 | /**
|
---|
114 | * @var string
|
---|
115 | */
|
---|
116 | public $startTime;
|
---|
117 | /**
|
---|
118 | * @var string
|
---|
119 | */
|
---|
120 | public $startTimeMs;
|
---|
121 | /**
|
---|
122 | * @var string
|
---|
123 | */
|
---|
124 | public $timeZone;
|
---|
125 | /**
|
---|
126 | * @var string
|
---|
127 | */
|
---|
128 | public $title;
|
---|
129 |
|
---|
130 | /**
|
---|
131 | * @param string
|
---|
132 | */
|
---|
133 | public function setAgendaItemUrl($agendaItemUrl)
|
---|
134 | {
|
---|
135 | $this->agendaItemUrl = $agendaItemUrl;
|
---|
136 | }
|
---|
137 | /**
|
---|
138 | * @return string
|
---|
139 | */
|
---|
140 | public function getAgendaItemUrl()
|
---|
141 | {
|
---|
142 | return $this->agendaItemUrl;
|
---|
143 | }
|
---|
144 | /**
|
---|
145 | * @param string
|
---|
146 | */
|
---|
147 | public function setChronology($chronology)
|
---|
148 | {
|
---|
149 | $this->chronology = $chronology;
|
---|
150 | }
|
---|
151 | /**
|
---|
152 | * @return string
|
---|
153 | */
|
---|
154 | public function getChronology()
|
---|
155 | {
|
---|
156 | return $this->chronology;
|
---|
157 | }
|
---|
158 | /**
|
---|
159 | * @param EnterpriseTopazSidekickPerson
|
---|
160 | */
|
---|
161 | public function setCreator(EnterpriseTopazSidekickPerson $creator)
|
---|
162 | {
|
---|
163 | $this->creator = $creator;
|
---|
164 | }
|
---|
165 | /**
|
---|
166 | * @return EnterpriseTopazSidekickPerson
|
---|
167 | */
|
---|
168 | public function getCreator()
|
---|
169 | {
|
---|
170 | return $this->creator;
|
---|
171 | }
|
---|
172 | /**
|
---|
173 | * @param string
|
---|
174 | */
|
---|
175 | public function setCurrentUserAttendingStatus($currentUserAttendingStatus)
|
---|
176 | {
|
---|
177 | $this->currentUserAttendingStatus = $currentUserAttendingStatus;
|
---|
178 | }
|
---|
179 | /**
|
---|
180 | * @return string
|
---|
181 | */
|
---|
182 | public function getCurrentUserAttendingStatus()
|
---|
183 | {
|
---|
184 | return $this->currentUserAttendingStatus;
|
---|
185 | }
|
---|
186 | /**
|
---|
187 | * @param string
|
---|
188 | */
|
---|
189 | public function setDescription($description)
|
---|
190 | {
|
---|
191 | $this->description = $description;
|
---|
192 | }
|
---|
193 | /**
|
---|
194 | * @return string
|
---|
195 | */
|
---|
196 | public function getDescription()
|
---|
197 | {
|
---|
198 | return $this->description;
|
---|
199 | }
|
---|
200 | /**
|
---|
201 | * @param EnterpriseTopazSidekickCommonDocument[]
|
---|
202 | */
|
---|
203 | public function setDocument($document)
|
---|
204 | {
|
---|
205 | $this->document = $document;
|
---|
206 | }
|
---|
207 | /**
|
---|
208 | * @return EnterpriseTopazSidekickCommonDocument[]
|
---|
209 | */
|
---|
210 | public function getDocument()
|
---|
211 | {
|
---|
212 | return $this->document;
|
---|
213 | }
|
---|
214 | /**
|
---|
215 | * @param string
|
---|
216 | */
|
---|
217 | public function setEndDate($endDate)
|
---|
218 | {
|
---|
219 | $this->endDate = $endDate;
|
---|
220 | }
|
---|
221 | /**
|
---|
222 | * @return string
|
---|
223 | */
|
---|
224 | public function getEndDate()
|
---|
225 | {
|
---|
226 | return $this->endDate;
|
---|
227 | }
|
---|
228 | /**
|
---|
229 | * @param string
|
---|
230 | */
|
---|
231 | public function setEndTime($endTime)
|
---|
232 | {
|
---|
233 | $this->endTime = $endTime;
|
---|
234 | }
|
---|
235 | /**
|
---|
236 | * @return string
|
---|
237 | */
|
---|
238 | public function getEndTime()
|
---|
239 | {
|
---|
240 | return $this->endTime;
|
---|
241 | }
|
---|
242 | /**
|
---|
243 | * @param string
|
---|
244 | */
|
---|
245 | public function setEndTimeMs($endTimeMs)
|
---|
246 | {
|
---|
247 | $this->endTimeMs = $endTimeMs;
|
---|
248 | }
|
---|
249 | /**
|
---|
250 | * @return string
|
---|
251 | */
|
---|
252 | public function getEndTimeMs()
|
---|
253 | {
|
---|
254 | return $this->endTimeMs;
|
---|
255 | }
|
---|
256 | /**
|
---|
257 | * @param string
|
---|
258 | */
|
---|
259 | public function setEventId($eventId)
|
---|
260 | {
|
---|
261 | $this->eventId = $eventId;
|
---|
262 | }
|
---|
263 | /**
|
---|
264 | * @return string
|
---|
265 | */
|
---|
266 | public function getEventId()
|
---|
267 | {
|
---|
268 | return $this->eventId;
|
---|
269 | }
|
---|
270 | /**
|
---|
271 | * @param bool
|
---|
272 | */
|
---|
273 | public function setGuestsCanInviteOthers($guestsCanInviteOthers)
|
---|
274 | {
|
---|
275 | $this->guestsCanInviteOthers = $guestsCanInviteOthers;
|
---|
276 | }
|
---|
277 | /**
|
---|
278 | * @return bool
|
---|
279 | */
|
---|
280 | public function getGuestsCanInviteOthers()
|
---|
281 | {
|
---|
282 | return $this->guestsCanInviteOthers;
|
---|
283 | }
|
---|
284 | /**
|
---|
285 | * @param bool
|
---|
286 | */
|
---|
287 | public function setGuestsCanModify($guestsCanModify)
|
---|
288 | {
|
---|
289 | $this->guestsCanModify = $guestsCanModify;
|
---|
290 | }
|
---|
291 | /**
|
---|
292 | * @return bool
|
---|
293 | */
|
---|
294 | public function getGuestsCanModify()
|
---|
295 | {
|
---|
296 | return $this->guestsCanModify;
|
---|
297 | }
|
---|
298 | /**
|
---|
299 | * @param bool
|
---|
300 | */
|
---|
301 | public function setGuestsCanSeeGuests($guestsCanSeeGuests)
|
---|
302 | {
|
---|
303 | $this->guestsCanSeeGuests = $guestsCanSeeGuests;
|
---|
304 | }
|
---|
305 | /**
|
---|
306 | * @return bool
|
---|
307 | */
|
---|
308 | public function getGuestsCanSeeGuests()
|
---|
309 | {
|
---|
310 | return $this->guestsCanSeeGuests;
|
---|
311 | }
|
---|
312 | /**
|
---|
313 | * @param string
|
---|
314 | */
|
---|
315 | public function setHangoutId($hangoutId)
|
---|
316 | {
|
---|
317 | $this->hangoutId = $hangoutId;
|
---|
318 | }
|
---|
319 | /**
|
---|
320 | * @return string
|
---|
321 | */
|
---|
322 | public function getHangoutId()
|
---|
323 | {
|
---|
324 | return $this->hangoutId;
|
---|
325 | }
|
---|
326 | /**
|
---|
327 | * @param string
|
---|
328 | */
|
---|
329 | public function setHangoutUrl($hangoutUrl)
|
---|
330 | {
|
---|
331 | $this->hangoutUrl = $hangoutUrl;
|
---|
332 | }
|
---|
333 | /**
|
---|
334 | * @return string
|
---|
335 | */
|
---|
336 | public function getHangoutUrl()
|
---|
337 | {
|
---|
338 | return $this->hangoutUrl;
|
---|
339 | }
|
---|
340 | /**
|
---|
341 | * @param EnterpriseTopazSidekickPerson[]
|
---|
342 | */
|
---|
343 | public function setInvitee($invitee)
|
---|
344 | {
|
---|
345 | $this->invitee = $invitee;
|
---|
346 | }
|
---|
347 | /**
|
---|
348 | * @return EnterpriseTopazSidekickPerson[]
|
---|
349 | */
|
---|
350 | public function getInvitee()
|
---|
351 | {
|
---|
352 | return $this->invitee;
|
---|
353 | }
|
---|
354 | /**
|
---|
355 | * @param bool
|
---|
356 | */
|
---|
357 | public function setIsAllDay($isAllDay)
|
---|
358 | {
|
---|
359 | $this->isAllDay = $isAllDay;
|
---|
360 | }
|
---|
361 | /**
|
---|
362 | * @return bool
|
---|
363 | */
|
---|
364 | public function getIsAllDay()
|
---|
365 | {
|
---|
366 | return $this->isAllDay;
|
---|
367 | }
|
---|
368 | /**
|
---|
369 | * @param string
|
---|
370 | */
|
---|
371 | public function setLastModificationTimeMs($lastModificationTimeMs)
|
---|
372 | {
|
---|
373 | $this->lastModificationTimeMs = $lastModificationTimeMs;
|
---|
374 | }
|
---|
375 | /**
|
---|
376 | * @return string
|
---|
377 | */
|
---|
378 | public function getLastModificationTimeMs()
|
---|
379 | {
|
---|
380 | return $this->lastModificationTimeMs;
|
---|
381 | }
|
---|
382 | /**
|
---|
383 | * @param string
|
---|
384 | */
|
---|
385 | public function setLocation($location)
|
---|
386 | {
|
---|
387 | $this->location = $location;
|
---|
388 | }
|
---|
389 | /**
|
---|
390 | * @return string
|
---|
391 | */
|
---|
392 | public function getLocation()
|
---|
393 | {
|
---|
394 | return $this->location;
|
---|
395 | }
|
---|
396 | /**
|
---|
397 | * @param bool
|
---|
398 | */
|
---|
399 | public function setNotifyToUser($notifyToUser)
|
---|
400 | {
|
---|
401 | $this->notifyToUser = $notifyToUser;
|
---|
402 | }
|
---|
403 | /**
|
---|
404 | * @return bool
|
---|
405 | */
|
---|
406 | public function getNotifyToUser()
|
---|
407 | {
|
---|
408 | return $this->notifyToUser;
|
---|
409 | }
|
---|
410 | /**
|
---|
411 | * @param bool
|
---|
412 | */
|
---|
413 | public function setOtherAttendeesExcluded($otherAttendeesExcluded)
|
---|
414 | {
|
---|
415 | $this->otherAttendeesExcluded = $otherAttendeesExcluded;
|
---|
416 | }
|
---|
417 | /**
|
---|
418 | * @return bool
|
---|
419 | */
|
---|
420 | public function getOtherAttendeesExcluded()
|
---|
421 | {
|
---|
422 | return $this->otherAttendeesExcluded;
|
---|
423 | }
|
---|
424 | /**
|
---|
425 | * @param bool
|
---|
426 | */
|
---|
427 | public function setRequesterIsOwner($requesterIsOwner)
|
---|
428 | {
|
---|
429 | $this->requesterIsOwner = $requesterIsOwner;
|
---|
430 | }
|
---|
431 | /**
|
---|
432 | * @return bool
|
---|
433 | */
|
---|
434 | public function getRequesterIsOwner()
|
---|
435 | {
|
---|
436 | return $this->requesterIsOwner;
|
---|
437 | }
|
---|
438 | /**
|
---|
439 | * @param bool
|
---|
440 | */
|
---|
441 | public function setShowFullEventDetailsToUse($showFullEventDetailsToUse)
|
---|
442 | {
|
---|
443 | $this->showFullEventDetailsToUse = $showFullEventDetailsToUse;
|
---|
444 | }
|
---|
445 | /**
|
---|
446 | * @return bool
|
---|
447 | */
|
---|
448 | public function getShowFullEventDetailsToUse()
|
---|
449 | {
|
---|
450 | return $this->showFullEventDetailsToUse;
|
---|
451 | }
|
---|
452 | /**
|
---|
453 | * @param string
|
---|
454 | */
|
---|
455 | public function setStartDate($startDate)
|
---|
456 | {
|
---|
457 | $this->startDate = $startDate;
|
---|
458 | }
|
---|
459 | /**
|
---|
460 | * @return string
|
---|
461 | */
|
---|
462 | public function getStartDate()
|
---|
463 | {
|
---|
464 | return $this->startDate;
|
---|
465 | }
|
---|
466 | /**
|
---|
467 | * @param string
|
---|
468 | */
|
---|
469 | public function setStartTime($startTime)
|
---|
470 | {
|
---|
471 | $this->startTime = $startTime;
|
---|
472 | }
|
---|
473 | /**
|
---|
474 | * @return string
|
---|
475 | */
|
---|
476 | public function getStartTime()
|
---|
477 | {
|
---|
478 | return $this->startTime;
|
---|
479 | }
|
---|
480 | /**
|
---|
481 | * @param string
|
---|
482 | */
|
---|
483 | public function setStartTimeMs($startTimeMs)
|
---|
484 | {
|
---|
485 | $this->startTimeMs = $startTimeMs;
|
---|
486 | }
|
---|
487 | /**
|
---|
488 | * @return string
|
---|
489 | */
|
---|
490 | public function getStartTimeMs()
|
---|
491 | {
|
---|
492 | return $this->startTimeMs;
|
---|
493 | }
|
---|
494 | /**
|
---|
495 | * @param string
|
---|
496 | */
|
---|
497 | public function setTimeZone($timeZone)
|
---|
498 | {
|
---|
499 | $this->timeZone = $timeZone;
|
---|
500 | }
|
---|
501 | /**
|
---|
502 | * @return string
|
---|
503 | */
|
---|
504 | public function getTimeZone()
|
---|
505 | {
|
---|
506 | return $this->timeZone;
|
---|
507 | }
|
---|
508 | /**
|
---|
509 | * @param string
|
---|
510 | */
|
---|
511 | public function setTitle($title)
|
---|
512 | {
|
---|
513 | $this->title = $title;
|
---|
514 | }
|
---|
515 | /**
|
---|
516 | * @return string
|
---|
517 | */
|
---|
518 | public function getTitle()
|
---|
519 | {
|
---|
520 | return $this->title;
|
---|
521 | }
|
---|
522 | }
|
---|
523 |
|
---|
524 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
525 | class_alias(EnterpriseTopazSidekickAgendaEntry::class, 'Google_Service_CloudSearch_EnterpriseTopazSidekickAgendaEntry');
|
---|