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\ChromeManagement;
|
---|
19 |
|
---|
20 | class GoogleChromeManagementVersionsV1ChromeBrowserProfile extends \Google\Model
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * @var string
|
---|
24 | */
|
---|
25 | public $affiliationState;
|
---|
26 | /**
|
---|
27 | * @var string
|
---|
28 | */
|
---|
29 | public $annotatedLocation;
|
---|
30 | /**
|
---|
31 | * @var string
|
---|
32 | */
|
---|
33 | public $annotatedUser;
|
---|
34 | protected $attestationCredentialType = GoogleChromeManagementVersionsV1AttestationCredential::class;
|
---|
35 | protected $attestationCredentialDataType = '';
|
---|
36 | /**
|
---|
37 | * @var string
|
---|
38 | */
|
---|
39 | public $browserChannel;
|
---|
40 | /**
|
---|
41 | * @var string
|
---|
42 | */
|
---|
43 | public $browserVersion;
|
---|
44 | protected $deviceInfoType = GoogleChromeManagementVersionsV1DeviceInfo::class;
|
---|
45 | protected $deviceInfoDataType = '';
|
---|
46 | /**
|
---|
47 | * @var string
|
---|
48 | */
|
---|
49 | public $displayName;
|
---|
50 | /**
|
---|
51 | * @var string
|
---|
52 | */
|
---|
53 | public $etag;
|
---|
54 | /**
|
---|
55 | * @var string
|
---|
56 | */
|
---|
57 | public $extensionCount;
|
---|
58 | /**
|
---|
59 | * @var string
|
---|
60 | */
|
---|
61 | public $firstEnrollmentTime;
|
---|
62 | /**
|
---|
63 | * @var string
|
---|
64 | */
|
---|
65 | public $identityProvider;
|
---|
66 | /**
|
---|
67 | * @var string
|
---|
68 | */
|
---|
69 | public $lastActivityTime;
|
---|
70 | /**
|
---|
71 | * @var string
|
---|
72 | */
|
---|
73 | public $lastPolicyFetchTime;
|
---|
74 | /**
|
---|
75 | * @var string
|
---|
76 | */
|
---|
77 | public $lastPolicySyncTime;
|
---|
78 | /**
|
---|
79 | * @var string
|
---|
80 | */
|
---|
81 | public $lastStatusReportTime;
|
---|
82 | /**
|
---|
83 | * @var string
|
---|
84 | */
|
---|
85 | public $name;
|
---|
86 | /**
|
---|
87 | * @var string
|
---|
88 | */
|
---|
89 | public $osPlatformType;
|
---|
90 | /**
|
---|
91 | * @var string
|
---|
92 | */
|
---|
93 | public $osPlatformVersion;
|
---|
94 | /**
|
---|
95 | * @var string
|
---|
96 | */
|
---|
97 | public $osVersion;
|
---|
98 | /**
|
---|
99 | * @var string
|
---|
100 | */
|
---|
101 | public $policyCount;
|
---|
102 | /**
|
---|
103 | * @var string
|
---|
104 | */
|
---|
105 | public $profileId;
|
---|
106 | /**
|
---|
107 | * @var string
|
---|
108 | */
|
---|
109 | public $profilePermanentId;
|
---|
110 | protected $reportingDataType = GoogleChromeManagementVersionsV1ReportingData::class;
|
---|
111 | protected $reportingDataDataType = '';
|
---|
112 | /**
|
---|
113 | * @var string
|
---|
114 | */
|
---|
115 | public $userEmail;
|
---|
116 | /**
|
---|
117 | * @var string
|
---|
118 | */
|
---|
119 | public $userId;
|
---|
120 |
|
---|
121 | /**
|
---|
122 | * @param string
|
---|
123 | */
|
---|
124 | public function setAffiliationState($affiliationState)
|
---|
125 | {
|
---|
126 | $this->affiliationState = $affiliationState;
|
---|
127 | }
|
---|
128 | /**
|
---|
129 | * @return string
|
---|
130 | */
|
---|
131 | public function getAffiliationState()
|
---|
132 | {
|
---|
133 | return $this->affiliationState;
|
---|
134 | }
|
---|
135 | /**
|
---|
136 | * @param string
|
---|
137 | */
|
---|
138 | public function setAnnotatedLocation($annotatedLocation)
|
---|
139 | {
|
---|
140 | $this->annotatedLocation = $annotatedLocation;
|
---|
141 | }
|
---|
142 | /**
|
---|
143 | * @return string
|
---|
144 | */
|
---|
145 | public function getAnnotatedLocation()
|
---|
146 | {
|
---|
147 | return $this->annotatedLocation;
|
---|
148 | }
|
---|
149 | /**
|
---|
150 | * @param string
|
---|
151 | */
|
---|
152 | public function setAnnotatedUser($annotatedUser)
|
---|
153 | {
|
---|
154 | $this->annotatedUser = $annotatedUser;
|
---|
155 | }
|
---|
156 | /**
|
---|
157 | * @return string
|
---|
158 | */
|
---|
159 | public function getAnnotatedUser()
|
---|
160 | {
|
---|
161 | return $this->annotatedUser;
|
---|
162 | }
|
---|
163 | /**
|
---|
164 | * @param GoogleChromeManagementVersionsV1AttestationCredential
|
---|
165 | */
|
---|
166 | public function setAttestationCredential(GoogleChromeManagementVersionsV1AttestationCredential $attestationCredential)
|
---|
167 | {
|
---|
168 | $this->attestationCredential = $attestationCredential;
|
---|
169 | }
|
---|
170 | /**
|
---|
171 | * @return GoogleChromeManagementVersionsV1AttestationCredential
|
---|
172 | */
|
---|
173 | public function getAttestationCredential()
|
---|
174 | {
|
---|
175 | return $this->attestationCredential;
|
---|
176 | }
|
---|
177 | /**
|
---|
178 | * @param string
|
---|
179 | */
|
---|
180 | public function setBrowserChannel($browserChannel)
|
---|
181 | {
|
---|
182 | $this->browserChannel = $browserChannel;
|
---|
183 | }
|
---|
184 | /**
|
---|
185 | * @return string
|
---|
186 | */
|
---|
187 | public function getBrowserChannel()
|
---|
188 | {
|
---|
189 | return $this->browserChannel;
|
---|
190 | }
|
---|
191 | /**
|
---|
192 | * @param string
|
---|
193 | */
|
---|
194 | public function setBrowserVersion($browserVersion)
|
---|
195 | {
|
---|
196 | $this->browserVersion = $browserVersion;
|
---|
197 | }
|
---|
198 | /**
|
---|
199 | * @return string
|
---|
200 | */
|
---|
201 | public function getBrowserVersion()
|
---|
202 | {
|
---|
203 | return $this->browserVersion;
|
---|
204 | }
|
---|
205 | /**
|
---|
206 | * @param GoogleChromeManagementVersionsV1DeviceInfo
|
---|
207 | */
|
---|
208 | public function setDeviceInfo(GoogleChromeManagementVersionsV1DeviceInfo $deviceInfo)
|
---|
209 | {
|
---|
210 | $this->deviceInfo = $deviceInfo;
|
---|
211 | }
|
---|
212 | /**
|
---|
213 | * @return GoogleChromeManagementVersionsV1DeviceInfo
|
---|
214 | */
|
---|
215 | public function getDeviceInfo()
|
---|
216 | {
|
---|
217 | return $this->deviceInfo;
|
---|
218 | }
|
---|
219 | /**
|
---|
220 | * @param string
|
---|
221 | */
|
---|
222 | public function setDisplayName($displayName)
|
---|
223 | {
|
---|
224 | $this->displayName = $displayName;
|
---|
225 | }
|
---|
226 | /**
|
---|
227 | * @return string
|
---|
228 | */
|
---|
229 | public function getDisplayName()
|
---|
230 | {
|
---|
231 | return $this->displayName;
|
---|
232 | }
|
---|
233 | /**
|
---|
234 | * @param string
|
---|
235 | */
|
---|
236 | public function setEtag($etag)
|
---|
237 | {
|
---|
238 | $this->etag = $etag;
|
---|
239 | }
|
---|
240 | /**
|
---|
241 | * @return string
|
---|
242 | */
|
---|
243 | public function getEtag()
|
---|
244 | {
|
---|
245 | return $this->etag;
|
---|
246 | }
|
---|
247 | /**
|
---|
248 | * @param string
|
---|
249 | */
|
---|
250 | public function setExtensionCount($extensionCount)
|
---|
251 | {
|
---|
252 | $this->extensionCount = $extensionCount;
|
---|
253 | }
|
---|
254 | /**
|
---|
255 | * @return string
|
---|
256 | */
|
---|
257 | public function getExtensionCount()
|
---|
258 | {
|
---|
259 | return $this->extensionCount;
|
---|
260 | }
|
---|
261 | /**
|
---|
262 | * @param string
|
---|
263 | */
|
---|
264 | public function setFirstEnrollmentTime($firstEnrollmentTime)
|
---|
265 | {
|
---|
266 | $this->firstEnrollmentTime = $firstEnrollmentTime;
|
---|
267 | }
|
---|
268 | /**
|
---|
269 | * @return string
|
---|
270 | */
|
---|
271 | public function getFirstEnrollmentTime()
|
---|
272 | {
|
---|
273 | return $this->firstEnrollmentTime;
|
---|
274 | }
|
---|
275 | /**
|
---|
276 | * @param string
|
---|
277 | */
|
---|
278 | public function setIdentityProvider($identityProvider)
|
---|
279 | {
|
---|
280 | $this->identityProvider = $identityProvider;
|
---|
281 | }
|
---|
282 | /**
|
---|
283 | * @return string
|
---|
284 | */
|
---|
285 | public function getIdentityProvider()
|
---|
286 | {
|
---|
287 | return $this->identityProvider;
|
---|
288 | }
|
---|
289 | /**
|
---|
290 | * @param string
|
---|
291 | */
|
---|
292 | public function setLastActivityTime($lastActivityTime)
|
---|
293 | {
|
---|
294 | $this->lastActivityTime = $lastActivityTime;
|
---|
295 | }
|
---|
296 | /**
|
---|
297 | * @return string
|
---|
298 | */
|
---|
299 | public function getLastActivityTime()
|
---|
300 | {
|
---|
301 | return $this->lastActivityTime;
|
---|
302 | }
|
---|
303 | /**
|
---|
304 | * @param string
|
---|
305 | */
|
---|
306 | public function setLastPolicyFetchTime($lastPolicyFetchTime)
|
---|
307 | {
|
---|
308 | $this->lastPolicyFetchTime = $lastPolicyFetchTime;
|
---|
309 | }
|
---|
310 | /**
|
---|
311 | * @return string
|
---|
312 | */
|
---|
313 | public function getLastPolicyFetchTime()
|
---|
314 | {
|
---|
315 | return $this->lastPolicyFetchTime;
|
---|
316 | }
|
---|
317 | /**
|
---|
318 | * @param string
|
---|
319 | */
|
---|
320 | public function setLastPolicySyncTime($lastPolicySyncTime)
|
---|
321 | {
|
---|
322 | $this->lastPolicySyncTime = $lastPolicySyncTime;
|
---|
323 | }
|
---|
324 | /**
|
---|
325 | * @return string
|
---|
326 | */
|
---|
327 | public function getLastPolicySyncTime()
|
---|
328 | {
|
---|
329 | return $this->lastPolicySyncTime;
|
---|
330 | }
|
---|
331 | /**
|
---|
332 | * @param string
|
---|
333 | */
|
---|
334 | public function setLastStatusReportTime($lastStatusReportTime)
|
---|
335 | {
|
---|
336 | $this->lastStatusReportTime = $lastStatusReportTime;
|
---|
337 | }
|
---|
338 | /**
|
---|
339 | * @return string
|
---|
340 | */
|
---|
341 | public function getLastStatusReportTime()
|
---|
342 | {
|
---|
343 | return $this->lastStatusReportTime;
|
---|
344 | }
|
---|
345 | /**
|
---|
346 | * @param string
|
---|
347 | */
|
---|
348 | public function setName($name)
|
---|
349 | {
|
---|
350 | $this->name = $name;
|
---|
351 | }
|
---|
352 | /**
|
---|
353 | * @return string
|
---|
354 | */
|
---|
355 | public function getName()
|
---|
356 | {
|
---|
357 | return $this->name;
|
---|
358 | }
|
---|
359 | /**
|
---|
360 | * @param string
|
---|
361 | */
|
---|
362 | public function setOsPlatformType($osPlatformType)
|
---|
363 | {
|
---|
364 | $this->osPlatformType = $osPlatformType;
|
---|
365 | }
|
---|
366 | /**
|
---|
367 | * @return string
|
---|
368 | */
|
---|
369 | public function getOsPlatformType()
|
---|
370 | {
|
---|
371 | return $this->osPlatformType;
|
---|
372 | }
|
---|
373 | /**
|
---|
374 | * @param string
|
---|
375 | */
|
---|
376 | public function setOsPlatformVersion($osPlatformVersion)
|
---|
377 | {
|
---|
378 | $this->osPlatformVersion = $osPlatformVersion;
|
---|
379 | }
|
---|
380 | /**
|
---|
381 | * @return string
|
---|
382 | */
|
---|
383 | public function getOsPlatformVersion()
|
---|
384 | {
|
---|
385 | return $this->osPlatformVersion;
|
---|
386 | }
|
---|
387 | /**
|
---|
388 | * @param string
|
---|
389 | */
|
---|
390 | public function setOsVersion($osVersion)
|
---|
391 | {
|
---|
392 | $this->osVersion = $osVersion;
|
---|
393 | }
|
---|
394 | /**
|
---|
395 | * @return string
|
---|
396 | */
|
---|
397 | public function getOsVersion()
|
---|
398 | {
|
---|
399 | return $this->osVersion;
|
---|
400 | }
|
---|
401 | /**
|
---|
402 | * @param string
|
---|
403 | */
|
---|
404 | public function setPolicyCount($policyCount)
|
---|
405 | {
|
---|
406 | $this->policyCount = $policyCount;
|
---|
407 | }
|
---|
408 | /**
|
---|
409 | * @return string
|
---|
410 | */
|
---|
411 | public function getPolicyCount()
|
---|
412 | {
|
---|
413 | return $this->policyCount;
|
---|
414 | }
|
---|
415 | /**
|
---|
416 | * @param string
|
---|
417 | */
|
---|
418 | public function setProfileId($profileId)
|
---|
419 | {
|
---|
420 | $this->profileId = $profileId;
|
---|
421 | }
|
---|
422 | /**
|
---|
423 | * @return string
|
---|
424 | */
|
---|
425 | public function getProfileId()
|
---|
426 | {
|
---|
427 | return $this->profileId;
|
---|
428 | }
|
---|
429 | /**
|
---|
430 | * @param string
|
---|
431 | */
|
---|
432 | public function setProfilePermanentId($profilePermanentId)
|
---|
433 | {
|
---|
434 | $this->profilePermanentId = $profilePermanentId;
|
---|
435 | }
|
---|
436 | /**
|
---|
437 | * @return string
|
---|
438 | */
|
---|
439 | public function getProfilePermanentId()
|
---|
440 | {
|
---|
441 | return $this->profilePermanentId;
|
---|
442 | }
|
---|
443 | /**
|
---|
444 | * @param GoogleChromeManagementVersionsV1ReportingData
|
---|
445 | */
|
---|
446 | public function setReportingData(GoogleChromeManagementVersionsV1ReportingData $reportingData)
|
---|
447 | {
|
---|
448 | $this->reportingData = $reportingData;
|
---|
449 | }
|
---|
450 | /**
|
---|
451 | * @return GoogleChromeManagementVersionsV1ReportingData
|
---|
452 | */
|
---|
453 | public function getReportingData()
|
---|
454 | {
|
---|
455 | return $this->reportingData;
|
---|
456 | }
|
---|
457 | /**
|
---|
458 | * @param string
|
---|
459 | */
|
---|
460 | public function setUserEmail($userEmail)
|
---|
461 | {
|
---|
462 | $this->userEmail = $userEmail;
|
---|
463 | }
|
---|
464 | /**
|
---|
465 | * @return string
|
---|
466 | */
|
---|
467 | public function getUserEmail()
|
---|
468 | {
|
---|
469 | return $this->userEmail;
|
---|
470 | }
|
---|
471 | /**
|
---|
472 | * @param string
|
---|
473 | */
|
---|
474 | public function setUserId($userId)
|
---|
475 | {
|
---|
476 | $this->userId = $userId;
|
---|
477 | }
|
---|
478 | /**
|
---|
479 | * @return string
|
---|
480 | */
|
---|
481 | public function getUserId()
|
---|
482 | {
|
---|
483 | return $this->userId;
|
---|
484 | }
|
---|
485 | }
|
---|
486 |
|
---|
487 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
488 | class_alias(GoogleChromeManagementVersionsV1ChromeBrowserProfile::class, 'Google_Service_ChromeManagement_GoogleChromeManagementVersionsV1ChromeBrowserProfile');
|
---|