source: vendor/google/apiclient-services/src/ChromeManagement/GoogleChromeManagementV1TelemetryEvent.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload new project files

  • Property mode set to 100644
File size: 7.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\ChromeManagement;
19
20class GoogleChromeManagementV1TelemetryEvent extends \Google\Model
21{
22 protected $appInstallEventType = GoogleChromeManagementV1TelemetryAppInstallEvent::class;
23 protected $appInstallEventDataType = '';
24 protected $appLaunchEventType = GoogleChromeManagementV1TelemetryAppLaunchEvent::class;
25 protected $appLaunchEventDataType = '';
26 protected $appUninstallEventType = GoogleChromeManagementV1TelemetryAppUninstallEvent::class;
27 protected $appUninstallEventDataType = '';
28 protected $audioSevereUnderrunEventType = GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent::class;
29 protected $audioSevereUnderrunEventDataType = '';
30 protected $deviceType = GoogleChromeManagementV1TelemetryDeviceInfo::class;
31 protected $deviceDataType = '';
32 /**
33 * @var string
34 */
35 public $eventType;
36 protected $httpsLatencyChangeEventType = GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent::class;
37 protected $httpsLatencyChangeEventDataType = '';
38 /**
39 * @var string
40 */
41 public $name;
42 protected $networkStateChangeEventType = GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent::class;
43 protected $networkStateChangeEventDataType = '';
44 /**
45 * @var string
46 */
47 public $reportTime;
48 protected $usbPeripheralsEventType = GoogleChromeManagementV1TelemetryUsbPeripheralsEvent::class;
49 protected $usbPeripheralsEventDataType = '';
50 protected $userType = GoogleChromeManagementV1TelemetryUserInfo::class;
51 protected $userDataType = '';
52 protected $vpnConnectionStateChangeEventType = GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent::class;
53 protected $vpnConnectionStateChangeEventDataType = '';
54 protected $wifiSignalStrengthEventType = GoogleChromeManagementV1TelemetryNetworkSignalStrengthEvent::class;
55 protected $wifiSignalStrengthEventDataType = '';
56
57 /**
58 * @param GoogleChromeManagementV1TelemetryAppInstallEvent
59 */
60 public function setAppInstallEvent(GoogleChromeManagementV1TelemetryAppInstallEvent $appInstallEvent)
61 {
62 $this->appInstallEvent = $appInstallEvent;
63 }
64 /**
65 * @return GoogleChromeManagementV1TelemetryAppInstallEvent
66 */
67 public function getAppInstallEvent()
68 {
69 return $this->appInstallEvent;
70 }
71 /**
72 * @param GoogleChromeManagementV1TelemetryAppLaunchEvent
73 */
74 public function setAppLaunchEvent(GoogleChromeManagementV1TelemetryAppLaunchEvent $appLaunchEvent)
75 {
76 $this->appLaunchEvent = $appLaunchEvent;
77 }
78 /**
79 * @return GoogleChromeManagementV1TelemetryAppLaunchEvent
80 */
81 public function getAppLaunchEvent()
82 {
83 return $this->appLaunchEvent;
84 }
85 /**
86 * @param GoogleChromeManagementV1TelemetryAppUninstallEvent
87 */
88 public function setAppUninstallEvent(GoogleChromeManagementV1TelemetryAppUninstallEvent $appUninstallEvent)
89 {
90 $this->appUninstallEvent = $appUninstallEvent;
91 }
92 /**
93 * @return GoogleChromeManagementV1TelemetryAppUninstallEvent
94 */
95 public function getAppUninstallEvent()
96 {
97 return $this->appUninstallEvent;
98 }
99 /**
100 * @param GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
101 */
102 public function setAudioSevereUnderrunEvent(GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent $audioSevereUnderrunEvent)
103 {
104 $this->audioSevereUnderrunEvent = $audioSevereUnderrunEvent;
105 }
106 /**
107 * @return GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
108 */
109 public function getAudioSevereUnderrunEvent()
110 {
111 return $this->audioSevereUnderrunEvent;
112 }
113 /**
114 * @param GoogleChromeManagementV1TelemetryDeviceInfo
115 */
116 public function setDevice(GoogleChromeManagementV1TelemetryDeviceInfo $device)
117 {
118 $this->device = $device;
119 }
120 /**
121 * @return GoogleChromeManagementV1TelemetryDeviceInfo
122 */
123 public function getDevice()
124 {
125 return $this->device;
126 }
127 /**
128 * @param string
129 */
130 public function setEventType($eventType)
131 {
132 $this->eventType = $eventType;
133 }
134 /**
135 * @return string
136 */
137 public function getEventType()
138 {
139 return $this->eventType;
140 }
141 /**
142 * @param GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent
143 */
144 public function setHttpsLatencyChangeEvent(GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent $httpsLatencyChangeEvent)
145 {
146 $this->httpsLatencyChangeEvent = $httpsLatencyChangeEvent;
147 }
148 /**
149 * @return GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent
150 */
151 public function getHttpsLatencyChangeEvent()
152 {
153 return $this->httpsLatencyChangeEvent;
154 }
155 /**
156 * @param string
157 */
158 public function setName($name)
159 {
160 $this->name = $name;
161 }
162 /**
163 * @return string
164 */
165 public function getName()
166 {
167 return $this->name;
168 }
169 /**
170 * @param GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent
171 */
172 public function setNetworkStateChangeEvent(GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent $networkStateChangeEvent)
173 {
174 $this->networkStateChangeEvent = $networkStateChangeEvent;
175 }
176 /**
177 * @return GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent
178 */
179 public function getNetworkStateChangeEvent()
180 {
181 return $this->networkStateChangeEvent;
182 }
183 /**
184 * @param string
185 */
186 public function setReportTime($reportTime)
187 {
188 $this->reportTime = $reportTime;
189 }
190 /**
191 * @return string
192 */
193 public function getReportTime()
194 {
195 return $this->reportTime;
196 }
197 /**
198 * @param GoogleChromeManagementV1TelemetryUsbPeripheralsEvent
199 */
200 public function setUsbPeripheralsEvent(GoogleChromeManagementV1TelemetryUsbPeripheralsEvent $usbPeripheralsEvent)
201 {
202 $this->usbPeripheralsEvent = $usbPeripheralsEvent;
203 }
204 /**
205 * @return GoogleChromeManagementV1TelemetryUsbPeripheralsEvent
206 */
207 public function getUsbPeripheralsEvent()
208 {
209 return $this->usbPeripheralsEvent;
210 }
211 /**
212 * @param GoogleChromeManagementV1TelemetryUserInfo
213 */
214 public function setUser(GoogleChromeManagementV1TelemetryUserInfo $user)
215 {
216 $this->user = $user;
217 }
218 /**
219 * @return GoogleChromeManagementV1TelemetryUserInfo
220 */
221 public function getUser()
222 {
223 return $this->user;
224 }
225 /**
226 * @param GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent
227 */
228 public function setVpnConnectionStateChangeEvent(GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent $vpnConnectionStateChangeEvent)
229 {
230 $this->vpnConnectionStateChangeEvent = $vpnConnectionStateChangeEvent;
231 }
232 /**
233 * @return GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent
234 */
235 public function getVpnConnectionStateChangeEvent()
236 {
237 return $this->vpnConnectionStateChangeEvent;
238 }
239 /**
240 * @param GoogleChromeManagementV1TelemetryNetworkSignalStrengthEvent
241 */
242 public function setWifiSignalStrengthEvent(GoogleChromeManagementV1TelemetryNetworkSignalStrengthEvent $wifiSignalStrengthEvent)
243 {
244 $this->wifiSignalStrengthEvent = $wifiSignalStrengthEvent;
245 }
246 /**
247 * @return GoogleChromeManagementV1TelemetryNetworkSignalStrengthEvent
248 */
249 public function getWifiSignalStrengthEvent()
250 {
251 return $this->wifiSignalStrengthEvent;
252 }
253}
254
255// Adding a class alias for backwards compatibility with the previous class name.
256class_alias(GoogleChromeManagementV1TelemetryEvent::class, 'Google_Service_ChromeManagement_GoogleChromeManagementV1TelemetryEvent');
Note: See TracBrowser for help on using the repository browser.