source: vendor/google/apiclient-services/src/CloudSearch/EnterpriseTopazSidekickFindMeetingTimeCardProto.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 3.8 KB
Line 
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
18namespace Google\Service\CloudSearch;
19
20class EnterpriseTopazSidekickFindMeetingTimeCardProto extends \Google\Collection
21{
22 protected $collection_key = 'skippedInvitees';
23 protected $commonAvailableTimeSlotsType = EnterpriseTopazSidekickTimeSlot::class;
24 protected $commonAvailableTimeSlotsDataType = 'array';
25 protected $inviteesType = EnterpriseTopazSidekickPerson::class;
26 protected $inviteesDataType = 'array';
27 protected $requesterType = EnterpriseTopazSidekickPerson::class;
28 protected $requesterDataType = '';
29 protected $scheduledMeetingType = EnterpriseTopazSidekickScheduledMeeting::class;
30 protected $scheduledMeetingDataType = '';
31 protected $skippedInviteesType = EnterpriseTopazSidekickPerson::class;
32 protected $skippedInviteesDataType = 'array';
33 protected $timeBoundariesType = EnterpriseTopazSidekickTimeSlot::class;
34 protected $timeBoundariesDataType = '';
35 /**
36 * @var string
37 */
38 public $timezoneId;
39
40 /**
41 * @param EnterpriseTopazSidekickTimeSlot[]
42 */
43 public function setCommonAvailableTimeSlots($commonAvailableTimeSlots)
44 {
45 $this->commonAvailableTimeSlots = $commonAvailableTimeSlots;
46 }
47 /**
48 * @return EnterpriseTopazSidekickTimeSlot[]
49 */
50 public function getCommonAvailableTimeSlots()
51 {
52 return $this->commonAvailableTimeSlots;
53 }
54 /**
55 * @param EnterpriseTopazSidekickPerson[]
56 */
57 public function setInvitees($invitees)
58 {
59 $this->invitees = $invitees;
60 }
61 /**
62 * @return EnterpriseTopazSidekickPerson[]
63 */
64 public function getInvitees()
65 {
66 return $this->invitees;
67 }
68 /**
69 * @param EnterpriseTopazSidekickPerson
70 */
71 public function setRequester(EnterpriseTopazSidekickPerson $requester)
72 {
73 $this->requester = $requester;
74 }
75 /**
76 * @return EnterpriseTopazSidekickPerson
77 */
78 public function getRequester()
79 {
80 return $this->requester;
81 }
82 /**
83 * @param EnterpriseTopazSidekickScheduledMeeting
84 */
85 public function setScheduledMeeting(EnterpriseTopazSidekickScheduledMeeting $scheduledMeeting)
86 {
87 $this->scheduledMeeting = $scheduledMeeting;
88 }
89 /**
90 * @return EnterpriseTopazSidekickScheduledMeeting
91 */
92 public function getScheduledMeeting()
93 {
94 return $this->scheduledMeeting;
95 }
96 /**
97 * @param EnterpriseTopazSidekickPerson[]
98 */
99 public function setSkippedInvitees($skippedInvitees)
100 {
101 $this->skippedInvitees = $skippedInvitees;
102 }
103 /**
104 * @return EnterpriseTopazSidekickPerson[]
105 */
106 public function getSkippedInvitees()
107 {
108 return $this->skippedInvitees;
109 }
110 /**
111 * @param EnterpriseTopazSidekickTimeSlot
112 */
113 public function setTimeBoundaries(EnterpriseTopazSidekickTimeSlot $timeBoundaries)
114 {
115 $this->timeBoundaries = $timeBoundaries;
116 }
117 /**
118 * @return EnterpriseTopazSidekickTimeSlot
119 */
120 public function getTimeBoundaries()
121 {
122 return $this->timeBoundaries;
123 }
124 /**
125 * @param string
126 */
127 public function setTimezoneId($timezoneId)
128 {
129 $this->timezoneId = $timezoneId;
130 }
131 /**
132 * @return string
133 */
134 public function getTimezoneId()
135 {
136 return $this->timezoneId;
137 }
138}
139
140// Adding a class alias for backwards compatibility with the previous class name.
141class_alias(EnterpriseTopazSidekickFindMeetingTimeCardProto::class, 'Google_Service_CloudSearch_EnterpriseTopazSidekickFindMeetingTimeCardProto');
Note: See TracBrowser for help on using the repository browser.