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\Vault;
|
---|
19 |
|
---|
20 | class Query extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $accountInfoType = AccountInfo::class;
|
---|
23 | protected $accountInfoDataType = '';
|
---|
24 | protected $calendarOptionsType = CalendarOptions::class;
|
---|
25 | protected $calendarOptionsDataType = '';
|
---|
26 | /**
|
---|
27 | * @var string
|
---|
28 | */
|
---|
29 | public $corpus;
|
---|
30 | /**
|
---|
31 | * @var string
|
---|
32 | */
|
---|
33 | public $dataScope;
|
---|
34 | protected $driveOptionsType = DriveOptions::class;
|
---|
35 | protected $driveOptionsDataType = '';
|
---|
36 | /**
|
---|
37 | * @var string
|
---|
38 | */
|
---|
39 | public $endTime;
|
---|
40 | protected $hangoutsChatInfoType = HangoutsChatInfo::class;
|
---|
41 | protected $hangoutsChatInfoDataType = '';
|
---|
42 | protected $hangoutsChatOptionsType = HangoutsChatOptions::class;
|
---|
43 | protected $hangoutsChatOptionsDataType = '';
|
---|
44 | protected $mailOptionsType = MailOptions::class;
|
---|
45 | protected $mailOptionsDataType = '';
|
---|
46 | /**
|
---|
47 | * @var string
|
---|
48 | */
|
---|
49 | public $method;
|
---|
50 | protected $orgUnitInfoType = OrgUnitInfo::class;
|
---|
51 | protected $orgUnitInfoDataType = '';
|
---|
52 | /**
|
---|
53 | * @var string
|
---|
54 | */
|
---|
55 | public $searchMethod;
|
---|
56 | protected $sharedDriveInfoType = SharedDriveInfo::class;
|
---|
57 | protected $sharedDriveInfoDataType = '';
|
---|
58 | protected $sitesUrlInfoType = SitesUrlInfo::class;
|
---|
59 | protected $sitesUrlInfoDataType = '';
|
---|
60 | /**
|
---|
61 | * @var string
|
---|
62 | */
|
---|
63 | public $startTime;
|
---|
64 | protected $teamDriveInfoType = TeamDriveInfo::class;
|
---|
65 | protected $teamDriveInfoDataType = '';
|
---|
66 | /**
|
---|
67 | * @var string
|
---|
68 | */
|
---|
69 | public $terms;
|
---|
70 | /**
|
---|
71 | * @var string
|
---|
72 | */
|
---|
73 | public $timeZone;
|
---|
74 | protected $voiceOptionsType = VoiceOptions::class;
|
---|
75 | protected $voiceOptionsDataType = '';
|
---|
76 |
|
---|
77 | /**
|
---|
78 | * @param AccountInfo
|
---|
79 | */
|
---|
80 | public function setAccountInfo(AccountInfo $accountInfo)
|
---|
81 | {
|
---|
82 | $this->accountInfo = $accountInfo;
|
---|
83 | }
|
---|
84 | /**
|
---|
85 | * @return AccountInfo
|
---|
86 | */
|
---|
87 | public function getAccountInfo()
|
---|
88 | {
|
---|
89 | return $this->accountInfo;
|
---|
90 | }
|
---|
91 | /**
|
---|
92 | * @param CalendarOptions
|
---|
93 | */
|
---|
94 | public function setCalendarOptions(CalendarOptions $calendarOptions)
|
---|
95 | {
|
---|
96 | $this->calendarOptions = $calendarOptions;
|
---|
97 | }
|
---|
98 | /**
|
---|
99 | * @return CalendarOptions
|
---|
100 | */
|
---|
101 | public function getCalendarOptions()
|
---|
102 | {
|
---|
103 | return $this->calendarOptions;
|
---|
104 | }
|
---|
105 | /**
|
---|
106 | * @param string
|
---|
107 | */
|
---|
108 | public function setCorpus($corpus)
|
---|
109 | {
|
---|
110 | $this->corpus = $corpus;
|
---|
111 | }
|
---|
112 | /**
|
---|
113 | * @return string
|
---|
114 | */
|
---|
115 | public function getCorpus()
|
---|
116 | {
|
---|
117 | return $this->corpus;
|
---|
118 | }
|
---|
119 | /**
|
---|
120 | * @param string
|
---|
121 | */
|
---|
122 | public function setDataScope($dataScope)
|
---|
123 | {
|
---|
124 | $this->dataScope = $dataScope;
|
---|
125 | }
|
---|
126 | /**
|
---|
127 | * @return string
|
---|
128 | */
|
---|
129 | public function getDataScope()
|
---|
130 | {
|
---|
131 | return $this->dataScope;
|
---|
132 | }
|
---|
133 | /**
|
---|
134 | * @param DriveOptions
|
---|
135 | */
|
---|
136 | public function setDriveOptions(DriveOptions $driveOptions)
|
---|
137 | {
|
---|
138 | $this->driveOptions = $driveOptions;
|
---|
139 | }
|
---|
140 | /**
|
---|
141 | * @return DriveOptions
|
---|
142 | */
|
---|
143 | public function getDriveOptions()
|
---|
144 | {
|
---|
145 | return $this->driveOptions;
|
---|
146 | }
|
---|
147 | /**
|
---|
148 | * @param string
|
---|
149 | */
|
---|
150 | public function setEndTime($endTime)
|
---|
151 | {
|
---|
152 | $this->endTime = $endTime;
|
---|
153 | }
|
---|
154 | /**
|
---|
155 | * @return string
|
---|
156 | */
|
---|
157 | public function getEndTime()
|
---|
158 | {
|
---|
159 | return $this->endTime;
|
---|
160 | }
|
---|
161 | /**
|
---|
162 | * @param HangoutsChatInfo
|
---|
163 | */
|
---|
164 | public function setHangoutsChatInfo(HangoutsChatInfo $hangoutsChatInfo)
|
---|
165 | {
|
---|
166 | $this->hangoutsChatInfo = $hangoutsChatInfo;
|
---|
167 | }
|
---|
168 | /**
|
---|
169 | * @return HangoutsChatInfo
|
---|
170 | */
|
---|
171 | public function getHangoutsChatInfo()
|
---|
172 | {
|
---|
173 | return $this->hangoutsChatInfo;
|
---|
174 | }
|
---|
175 | /**
|
---|
176 | * @param HangoutsChatOptions
|
---|
177 | */
|
---|
178 | public function setHangoutsChatOptions(HangoutsChatOptions $hangoutsChatOptions)
|
---|
179 | {
|
---|
180 | $this->hangoutsChatOptions = $hangoutsChatOptions;
|
---|
181 | }
|
---|
182 | /**
|
---|
183 | * @return HangoutsChatOptions
|
---|
184 | */
|
---|
185 | public function getHangoutsChatOptions()
|
---|
186 | {
|
---|
187 | return $this->hangoutsChatOptions;
|
---|
188 | }
|
---|
189 | /**
|
---|
190 | * @param MailOptions
|
---|
191 | */
|
---|
192 | public function setMailOptions(MailOptions $mailOptions)
|
---|
193 | {
|
---|
194 | $this->mailOptions = $mailOptions;
|
---|
195 | }
|
---|
196 | /**
|
---|
197 | * @return MailOptions
|
---|
198 | */
|
---|
199 | public function getMailOptions()
|
---|
200 | {
|
---|
201 | return $this->mailOptions;
|
---|
202 | }
|
---|
203 | /**
|
---|
204 | * @param string
|
---|
205 | */
|
---|
206 | public function setMethod($method)
|
---|
207 | {
|
---|
208 | $this->method = $method;
|
---|
209 | }
|
---|
210 | /**
|
---|
211 | * @return string
|
---|
212 | */
|
---|
213 | public function getMethod()
|
---|
214 | {
|
---|
215 | return $this->method;
|
---|
216 | }
|
---|
217 | /**
|
---|
218 | * @param OrgUnitInfo
|
---|
219 | */
|
---|
220 | public function setOrgUnitInfo(OrgUnitInfo $orgUnitInfo)
|
---|
221 | {
|
---|
222 | $this->orgUnitInfo = $orgUnitInfo;
|
---|
223 | }
|
---|
224 | /**
|
---|
225 | * @return OrgUnitInfo
|
---|
226 | */
|
---|
227 | public function getOrgUnitInfo()
|
---|
228 | {
|
---|
229 | return $this->orgUnitInfo;
|
---|
230 | }
|
---|
231 | /**
|
---|
232 | * @param string
|
---|
233 | */
|
---|
234 | public function setSearchMethod($searchMethod)
|
---|
235 | {
|
---|
236 | $this->searchMethod = $searchMethod;
|
---|
237 | }
|
---|
238 | /**
|
---|
239 | * @return string
|
---|
240 | */
|
---|
241 | public function getSearchMethod()
|
---|
242 | {
|
---|
243 | return $this->searchMethod;
|
---|
244 | }
|
---|
245 | /**
|
---|
246 | * @param SharedDriveInfo
|
---|
247 | */
|
---|
248 | public function setSharedDriveInfo(SharedDriveInfo $sharedDriveInfo)
|
---|
249 | {
|
---|
250 | $this->sharedDriveInfo = $sharedDriveInfo;
|
---|
251 | }
|
---|
252 | /**
|
---|
253 | * @return SharedDriveInfo
|
---|
254 | */
|
---|
255 | public function getSharedDriveInfo()
|
---|
256 | {
|
---|
257 | return $this->sharedDriveInfo;
|
---|
258 | }
|
---|
259 | /**
|
---|
260 | * @param SitesUrlInfo
|
---|
261 | */
|
---|
262 | public function setSitesUrlInfo(SitesUrlInfo $sitesUrlInfo)
|
---|
263 | {
|
---|
264 | $this->sitesUrlInfo = $sitesUrlInfo;
|
---|
265 | }
|
---|
266 | /**
|
---|
267 | * @return SitesUrlInfo
|
---|
268 | */
|
---|
269 | public function getSitesUrlInfo()
|
---|
270 | {
|
---|
271 | return $this->sitesUrlInfo;
|
---|
272 | }
|
---|
273 | /**
|
---|
274 | * @param string
|
---|
275 | */
|
---|
276 | public function setStartTime($startTime)
|
---|
277 | {
|
---|
278 | $this->startTime = $startTime;
|
---|
279 | }
|
---|
280 | /**
|
---|
281 | * @return string
|
---|
282 | */
|
---|
283 | public function getStartTime()
|
---|
284 | {
|
---|
285 | return $this->startTime;
|
---|
286 | }
|
---|
287 | /**
|
---|
288 | * @param TeamDriveInfo
|
---|
289 | */
|
---|
290 | public function setTeamDriveInfo(TeamDriveInfo $teamDriveInfo)
|
---|
291 | {
|
---|
292 | $this->teamDriveInfo = $teamDriveInfo;
|
---|
293 | }
|
---|
294 | /**
|
---|
295 | * @return TeamDriveInfo
|
---|
296 | */
|
---|
297 | public function getTeamDriveInfo()
|
---|
298 | {
|
---|
299 | return $this->teamDriveInfo;
|
---|
300 | }
|
---|
301 | /**
|
---|
302 | * @param string
|
---|
303 | */
|
---|
304 | public function setTerms($terms)
|
---|
305 | {
|
---|
306 | $this->terms = $terms;
|
---|
307 | }
|
---|
308 | /**
|
---|
309 | * @return string
|
---|
310 | */
|
---|
311 | public function getTerms()
|
---|
312 | {
|
---|
313 | return $this->terms;
|
---|
314 | }
|
---|
315 | /**
|
---|
316 | * @param string
|
---|
317 | */
|
---|
318 | public function setTimeZone($timeZone)
|
---|
319 | {
|
---|
320 | $this->timeZone = $timeZone;
|
---|
321 | }
|
---|
322 | /**
|
---|
323 | * @return string
|
---|
324 | */
|
---|
325 | public function getTimeZone()
|
---|
326 | {
|
---|
327 | return $this->timeZone;
|
---|
328 | }
|
---|
329 | /**
|
---|
330 | * @param VoiceOptions
|
---|
331 | */
|
---|
332 | public function setVoiceOptions(VoiceOptions $voiceOptions)
|
---|
333 | {
|
---|
334 | $this->voiceOptions = $voiceOptions;
|
---|
335 | }
|
---|
336 | /**
|
---|
337 | * @return VoiceOptions
|
---|
338 | */
|
---|
339 | public function getVoiceOptions()
|
---|
340 | {
|
---|
341 | return $this->voiceOptions;
|
---|
342 | }
|
---|
343 | }
|
---|
344 |
|
---|
345 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
346 | class_alias(Query::class, 'Google_Service_Vault_Query');
|
---|