source: vendor/google/apiclient-services/src/AndroidManagement/UsageLogEvent.php

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

Upload project files

  • Property mode set to 100644
File size: 15.3 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\AndroidManagement;
19
20class UsageLogEvent extends \Google\Model
21{
22 protected $adbShellCommandEventType = AdbShellCommandEvent::class;
23 protected $adbShellCommandEventDataType = '';
24 protected $adbShellInteractiveEventType = AdbShellInteractiveEvent::class;
25 protected $adbShellInteractiveEventDataType = '';
26 protected $appProcessStartEventType = AppProcessStartEvent::class;
27 protected $appProcessStartEventDataType = '';
28 protected $certAuthorityInstalledEventType = CertAuthorityInstalledEvent::class;
29 protected $certAuthorityInstalledEventDataType = '';
30 protected $certAuthorityRemovedEventType = CertAuthorityRemovedEvent::class;
31 protected $certAuthorityRemovedEventDataType = '';
32 protected $certValidationFailureEventType = CertValidationFailureEvent::class;
33 protected $certValidationFailureEventDataType = '';
34 protected $connectEventType = ConnectEvent::class;
35 protected $connectEventDataType = '';
36 protected $cryptoSelfTestCompletedEventType = CryptoSelfTestCompletedEvent::class;
37 protected $cryptoSelfTestCompletedEventDataType = '';
38 protected $dnsEventType = DnsEvent::class;
39 protected $dnsEventDataType = '';
40 protected $enrollmentCompleteEventType = EnrollmentCompleteEvent::class;
41 protected $enrollmentCompleteEventDataType = '';
42 /**
43 * @var string
44 */
45 public $eventId;
46 /**
47 * @var string
48 */
49 public $eventTime;
50 /**
51 * @var string
52 */
53 public $eventType;
54 protected $filePulledEventType = FilePulledEvent::class;
55 protected $filePulledEventDataType = '';
56 protected $filePushedEventType = FilePushedEvent::class;
57 protected $filePushedEventDataType = '';
58 protected $keyDestructionEventType = KeyDestructionEvent::class;
59 protected $keyDestructionEventDataType = '';
60 protected $keyGeneratedEventType = KeyGeneratedEvent::class;
61 protected $keyGeneratedEventDataType = '';
62 protected $keyImportEventType = KeyImportEvent::class;
63 protected $keyImportEventDataType = '';
64 protected $keyIntegrityViolationEventType = KeyIntegrityViolationEvent::class;
65 protected $keyIntegrityViolationEventDataType = '';
66 protected $keyguardDismissAuthAttemptEventType = KeyguardDismissAuthAttemptEvent::class;
67 protected $keyguardDismissAuthAttemptEventDataType = '';
68 protected $keyguardDismissedEventType = KeyguardDismissedEvent::class;
69 protected $keyguardDismissedEventDataType = '';
70 protected $keyguardSecuredEventType = KeyguardSecuredEvent::class;
71 protected $keyguardSecuredEventDataType = '';
72 protected $logBufferSizeCriticalEventType = LogBufferSizeCriticalEvent::class;
73 protected $logBufferSizeCriticalEventDataType = '';
74 protected $loggingStartedEventType = LoggingStartedEvent::class;
75 protected $loggingStartedEventDataType = '';
76 protected $loggingStoppedEventType = LoggingStoppedEvent::class;
77 protected $loggingStoppedEventDataType = '';
78 protected $lostModeLocationEventType = LostModeLocationEvent::class;
79 protected $lostModeLocationEventDataType = '';
80 protected $lostModeOutgoingPhoneCallEventType = LostModeOutgoingPhoneCallEvent::class;
81 protected $lostModeOutgoingPhoneCallEventDataType = '';
82 protected $mediaMountEventType = MediaMountEvent::class;
83 protected $mediaMountEventDataType = '';
84 protected $mediaUnmountEventType = MediaUnmountEvent::class;
85 protected $mediaUnmountEventDataType = '';
86 protected $osShutdownEventType = OsShutdownEvent::class;
87 protected $osShutdownEventDataType = '';
88 protected $osStartupEventType = OsStartupEvent::class;
89 protected $osStartupEventDataType = '';
90 protected $remoteLockEventType = RemoteLockEvent::class;
91 protected $remoteLockEventDataType = '';
92 protected $stopLostModeUserAttemptEventType = StopLostModeUserAttemptEvent::class;
93 protected $stopLostModeUserAttemptEventDataType = '';
94 protected $wipeFailureEventType = WipeFailureEvent::class;
95 protected $wipeFailureEventDataType = '';
96
97 /**
98 * @param AdbShellCommandEvent
99 */
100 public function setAdbShellCommandEvent(AdbShellCommandEvent $adbShellCommandEvent)
101 {
102 $this->adbShellCommandEvent = $adbShellCommandEvent;
103 }
104 /**
105 * @return AdbShellCommandEvent
106 */
107 public function getAdbShellCommandEvent()
108 {
109 return $this->adbShellCommandEvent;
110 }
111 /**
112 * @param AdbShellInteractiveEvent
113 */
114 public function setAdbShellInteractiveEvent(AdbShellInteractiveEvent $adbShellInteractiveEvent)
115 {
116 $this->adbShellInteractiveEvent = $adbShellInteractiveEvent;
117 }
118 /**
119 * @return AdbShellInteractiveEvent
120 */
121 public function getAdbShellInteractiveEvent()
122 {
123 return $this->adbShellInteractiveEvent;
124 }
125 /**
126 * @param AppProcessStartEvent
127 */
128 public function setAppProcessStartEvent(AppProcessStartEvent $appProcessStartEvent)
129 {
130 $this->appProcessStartEvent = $appProcessStartEvent;
131 }
132 /**
133 * @return AppProcessStartEvent
134 */
135 public function getAppProcessStartEvent()
136 {
137 return $this->appProcessStartEvent;
138 }
139 /**
140 * @param CertAuthorityInstalledEvent
141 */
142 public function setCertAuthorityInstalledEvent(CertAuthorityInstalledEvent $certAuthorityInstalledEvent)
143 {
144 $this->certAuthorityInstalledEvent = $certAuthorityInstalledEvent;
145 }
146 /**
147 * @return CertAuthorityInstalledEvent
148 */
149 public function getCertAuthorityInstalledEvent()
150 {
151 return $this->certAuthorityInstalledEvent;
152 }
153 /**
154 * @param CertAuthorityRemovedEvent
155 */
156 public function setCertAuthorityRemovedEvent(CertAuthorityRemovedEvent $certAuthorityRemovedEvent)
157 {
158 $this->certAuthorityRemovedEvent = $certAuthorityRemovedEvent;
159 }
160 /**
161 * @return CertAuthorityRemovedEvent
162 */
163 public function getCertAuthorityRemovedEvent()
164 {
165 return $this->certAuthorityRemovedEvent;
166 }
167 /**
168 * @param CertValidationFailureEvent
169 */
170 public function setCertValidationFailureEvent(CertValidationFailureEvent $certValidationFailureEvent)
171 {
172 $this->certValidationFailureEvent = $certValidationFailureEvent;
173 }
174 /**
175 * @return CertValidationFailureEvent
176 */
177 public function getCertValidationFailureEvent()
178 {
179 return $this->certValidationFailureEvent;
180 }
181 /**
182 * @param ConnectEvent
183 */
184 public function setConnectEvent(ConnectEvent $connectEvent)
185 {
186 $this->connectEvent = $connectEvent;
187 }
188 /**
189 * @return ConnectEvent
190 */
191 public function getConnectEvent()
192 {
193 return $this->connectEvent;
194 }
195 /**
196 * @param CryptoSelfTestCompletedEvent
197 */
198 public function setCryptoSelfTestCompletedEvent(CryptoSelfTestCompletedEvent $cryptoSelfTestCompletedEvent)
199 {
200 $this->cryptoSelfTestCompletedEvent = $cryptoSelfTestCompletedEvent;
201 }
202 /**
203 * @return CryptoSelfTestCompletedEvent
204 */
205 public function getCryptoSelfTestCompletedEvent()
206 {
207 return $this->cryptoSelfTestCompletedEvent;
208 }
209 /**
210 * @param DnsEvent
211 */
212 public function setDnsEvent(DnsEvent $dnsEvent)
213 {
214 $this->dnsEvent = $dnsEvent;
215 }
216 /**
217 * @return DnsEvent
218 */
219 public function getDnsEvent()
220 {
221 return $this->dnsEvent;
222 }
223 /**
224 * @param EnrollmentCompleteEvent
225 */
226 public function setEnrollmentCompleteEvent(EnrollmentCompleteEvent $enrollmentCompleteEvent)
227 {
228 $this->enrollmentCompleteEvent = $enrollmentCompleteEvent;
229 }
230 /**
231 * @return EnrollmentCompleteEvent
232 */
233 public function getEnrollmentCompleteEvent()
234 {
235 return $this->enrollmentCompleteEvent;
236 }
237 /**
238 * @param string
239 */
240 public function setEventId($eventId)
241 {
242 $this->eventId = $eventId;
243 }
244 /**
245 * @return string
246 */
247 public function getEventId()
248 {
249 return $this->eventId;
250 }
251 /**
252 * @param string
253 */
254 public function setEventTime($eventTime)
255 {
256 $this->eventTime = $eventTime;
257 }
258 /**
259 * @return string
260 */
261 public function getEventTime()
262 {
263 return $this->eventTime;
264 }
265 /**
266 * @param string
267 */
268 public function setEventType($eventType)
269 {
270 $this->eventType = $eventType;
271 }
272 /**
273 * @return string
274 */
275 public function getEventType()
276 {
277 return $this->eventType;
278 }
279 /**
280 * @param FilePulledEvent
281 */
282 public function setFilePulledEvent(FilePulledEvent $filePulledEvent)
283 {
284 $this->filePulledEvent = $filePulledEvent;
285 }
286 /**
287 * @return FilePulledEvent
288 */
289 public function getFilePulledEvent()
290 {
291 return $this->filePulledEvent;
292 }
293 /**
294 * @param FilePushedEvent
295 */
296 public function setFilePushedEvent(FilePushedEvent $filePushedEvent)
297 {
298 $this->filePushedEvent = $filePushedEvent;
299 }
300 /**
301 * @return FilePushedEvent
302 */
303 public function getFilePushedEvent()
304 {
305 return $this->filePushedEvent;
306 }
307 /**
308 * @param KeyDestructionEvent
309 */
310 public function setKeyDestructionEvent(KeyDestructionEvent $keyDestructionEvent)
311 {
312 $this->keyDestructionEvent = $keyDestructionEvent;
313 }
314 /**
315 * @return KeyDestructionEvent
316 */
317 public function getKeyDestructionEvent()
318 {
319 return $this->keyDestructionEvent;
320 }
321 /**
322 * @param KeyGeneratedEvent
323 */
324 public function setKeyGeneratedEvent(KeyGeneratedEvent $keyGeneratedEvent)
325 {
326 $this->keyGeneratedEvent = $keyGeneratedEvent;
327 }
328 /**
329 * @return KeyGeneratedEvent
330 */
331 public function getKeyGeneratedEvent()
332 {
333 return $this->keyGeneratedEvent;
334 }
335 /**
336 * @param KeyImportEvent
337 */
338 public function setKeyImportEvent(KeyImportEvent $keyImportEvent)
339 {
340 $this->keyImportEvent = $keyImportEvent;
341 }
342 /**
343 * @return KeyImportEvent
344 */
345 public function getKeyImportEvent()
346 {
347 return $this->keyImportEvent;
348 }
349 /**
350 * @param KeyIntegrityViolationEvent
351 */
352 public function setKeyIntegrityViolationEvent(KeyIntegrityViolationEvent $keyIntegrityViolationEvent)
353 {
354 $this->keyIntegrityViolationEvent = $keyIntegrityViolationEvent;
355 }
356 /**
357 * @return KeyIntegrityViolationEvent
358 */
359 public function getKeyIntegrityViolationEvent()
360 {
361 return $this->keyIntegrityViolationEvent;
362 }
363 /**
364 * @param KeyguardDismissAuthAttemptEvent
365 */
366 public function setKeyguardDismissAuthAttemptEvent(KeyguardDismissAuthAttemptEvent $keyguardDismissAuthAttemptEvent)
367 {
368 $this->keyguardDismissAuthAttemptEvent = $keyguardDismissAuthAttemptEvent;
369 }
370 /**
371 * @return KeyguardDismissAuthAttemptEvent
372 */
373 public function getKeyguardDismissAuthAttemptEvent()
374 {
375 return $this->keyguardDismissAuthAttemptEvent;
376 }
377 /**
378 * @param KeyguardDismissedEvent
379 */
380 public function setKeyguardDismissedEvent(KeyguardDismissedEvent $keyguardDismissedEvent)
381 {
382 $this->keyguardDismissedEvent = $keyguardDismissedEvent;
383 }
384 /**
385 * @return KeyguardDismissedEvent
386 */
387 public function getKeyguardDismissedEvent()
388 {
389 return $this->keyguardDismissedEvent;
390 }
391 /**
392 * @param KeyguardSecuredEvent
393 */
394 public function setKeyguardSecuredEvent(KeyguardSecuredEvent $keyguardSecuredEvent)
395 {
396 $this->keyguardSecuredEvent = $keyguardSecuredEvent;
397 }
398 /**
399 * @return KeyguardSecuredEvent
400 */
401 public function getKeyguardSecuredEvent()
402 {
403 return $this->keyguardSecuredEvent;
404 }
405 /**
406 * @param LogBufferSizeCriticalEvent
407 */
408 public function setLogBufferSizeCriticalEvent(LogBufferSizeCriticalEvent $logBufferSizeCriticalEvent)
409 {
410 $this->logBufferSizeCriticalEvent = $logBufferSizeCriticalEvent;
411 }
412 /**
413 * @return LogBufferSizeCriticalEvent
414 */
415 public function getLogBufferSizeCriticalEvent()
416 {
417 return $this->logBufferSizeCriticalEvent;
418 }
419 /**
420 * @param LoggingStartedEvent
421 */
422 public function setLoggingStartedEvent(LoggingStartedEvent $loggingStartedEvent)
423 {
424 $this->loggingStartedEvent = $loggingStartedEvent;
425 }
426 /**
427 * @return LoggingStartedEvent
428 */
429 public function getLoggingStartedEvent()
430 {
431 return $this->loggingStartedEvent;
432 }
433 /**
434 * @param LoggingStoppedEvent
435 */
436 public function setLoggingStoppedEvent(LoggingStoppedEvent $loggingStoppedEvent)
437 {
438 $this->loggingStoppedEvent = $loggingStoppedEvent;
439 }
440 /**
441 * @return LoggingStoppedEvent
442 */
443 public function getLoggingStoppedEvent()
444 {
445 return $this->loggingStoppedEvent;
446 }
447 /**
448 * @param LostModeLocationEvent
449 */
450 public function setLostModeLocationEvent(LostModeLocationEvent $lostModeLocationEvent)
451 {
452 $this->lostModeLocationEvent = $lostModeLocationEvent;
453 }
454 /**
455 * @return LostModeLocationEvent
456 */
457 public function getLostModeLocationEvent()
458 {
459 return $this->lostModeLocationEvent;
460 }
461 /**
462 * @param LostModeOutgoingPhoneCallEvent
463 */
464 public function setLostModeOutgoingPhoneCallEvent(LostModeOutgoingPhoneCallEvent $lostModeOutgoingPhoneCallEvent)
465 {
466 $this->lostModeOutgoingPhoneCallEvent = $lostModeOutgoingPhoneCallEvent;
467 }
468 /**
469 * @return LostModeOutgoingPhoneCallEvent
470 */
471 public function getLostModeOutgoingPhoneCallEvent()
472 {
473 return $this->lostModeOutgoingPhoneCallEvent;
474 }
475 /**
476 * @param MediaMountEvent
477 */
478 public function setMediaMountEvent(MediaMountEvent $mediaMountEvent)
479 {
480 $this->mediaMountEvent = $mediaMountEvent;
481 }
482 /**
483 * @return MediaMountEvent
484 */
485 public function getMediaMountEvent()
486 {
487 return $this->mediaMountEvent;
488 }
489 /**
490 * @param MediaUnmountEvent
491 */
492 public function setMediaUnmountEvent(MediaUnmountEvent $mediaUnmountEvent)
493 {
494 $this->mediaUnmountEvent = $mediaUnmountEvent;
495 }
496 /**
497 * @return MediaUnmountEvent
498 */
499 public function getMediaUnmountEvent()
500 {
501 return $this->mediaUnmountEvent;
502 }
503 /**
504 * @param OsShutdownEvent
505 */
506 public function setOsShutdownEvent(OsShutdownEvent $osShutdownEvent)
507 {
508 $this->osShutdownEvent = $osShutdownEvent;
509 }
510 /**
511 * @return OsShutdownEvent
512 */
513 public function getOsShutdownEvent()
514 {
515 return $this->osShutdownEvent;
516 }
517 /**
518 * @param OsStartupEvent
519 */
520 public function setOsStartupEvent(OsStartupEvent $osStartupEvent)
521 {
522 $this->osStartupEvent = $osStartupEvent;
523 }
524 /**
525 * @return OsStartupEvent
526 */
527 public function getOsStartupEvent()
528 {
529 return $this->osStartupEvent;
530 }
531 /**
532 * @param RemoteLockEvent
533 */
534 public function setRemoteLockEvent(RemoteLockEvent $remoteLockEvent)
535 {
536 $this->remoteLockEvent = $remoteLockEvent;
537 }
538 /**
539 * @return RemoteLockEvent
540 */
541 public function getRemoteLockEvent()
542 {
543 return $this->remoteLockEvent;
544 }
545 /**
546 * @param StopLostModeUserAttemptEvent
547 */
548 public function setStopLostModeUserAttemptEvent(StopLostModeUserAttemptEvent $stopLostModeUserAttemptEvent)
549 {
550 $this->stopLostModeUserAttemptEvent = $stopLostModeUserAttemptEvent;
551 }
552 /**
553 * @return StopLostModeUserAttemptEvent
554 */
555 public function getStopLostModeUserAttemptEvent()
556 {
557 return $this->stopLostModeUserAttemptEvent;
558 }
559 /**
560 * @param WipeFailureEvent
561 */
562 public function setWipeFailureEvent(WipeFailureEvent $wipeFailureEvent)
563 {
564 $this->wipeFailureEvent = $wipeFailureEvent;
565 }
566 /**
567 * @return WipeFailureEvent
568 */
569 public function getWipeFailureEvent()
570 {
571 return $this->wipeFailureEvent;
572 }
573}
574
575// Adding a class alias for backwards compatibility with the previous class name.
576class_alias(UsageLogEvent::class, 'Google_Service_AndroidManagement_UsageLogEvent');
Note: See TracBrowser for help on using the repository browser.