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 HardwareInfo extends \Google\Collection
21{
22  protected $collection_key = 'skinThrottlingTemperatures';
23  /**
24   * @var float[]
25   */
26  public $batteryShutdownTemperatures;
27  /**
28   * @var float[]
29   */
30  public $batteryThrottlingTemperatures;
31  /**
32   * @var string
33   */
34  public $brand;
35  /**
36   * @var float[]
37   */
38  public $cpuShutdownTemperatures;
39  /**
40   * @var float[]
41   */
42  public $cpuThrottlingTemperatures;
43  /**
44   * @var string
45   */
46  public $deviceBasebandVersion;
47  /**
48   * @var string
49   */
50  public $enterpriseSpecificId;
51  /**
52   * @var float[]
53   */
54  public $gpuShutdownTemperatures;
55  /**
56   * @var float[]
57   */
58  public $gpuThrottlingTemperatures;
59  /**
60   * @var string
61   */
62  public $hardware;
63  /**
64   * @var string
65   */
66  public $manufacturer;
67  /**
68   * @var string
69   */
70  public $model;
71  /**
72   * @var string
73   */
74  public $serialNumber;
75  /**
76   * @var float[]
77   */
78  public $skinShutdownTemperatures;
79  /**
80   * @var float[]
81   */
82  public $skinThrottlingTemperatures;
83
84  /**
85   * @param float[]
86   */
87  public function setBatteryShutdownTemperatures($batteryShutdownTemperatures)
88  {
89    $this->batteryShutdownTemperatures = $batteryShutdownTemperatures;
90  }
91  /**
92   * @return float[]
93   */
94  public function getBatteryShutdownTemperatures()
95  {
96    return $this->batteryShutdownTemperatures;
97  }
98  /**
99   * @param float[]
100   */
101  public function setBatteryThrottlingTemperatures($batteryThrottlingTemperatures)
102  {
103    $this->batteryThrottlingTemperatures = $batteryThrottlingTemperatures;
104  }
105  /**
106   * @return float[]
107   */
108  public function getBatteryThrottlingTemperatures()
109  {
110    return $this->batteryThrottlingTemperatures;
111  }
112  /**
113   * @param string
114   */
115  public function setBrand($brand)
116  {
117    $this->brand = $brand;
118  }
119  /**
120   * @return string
121   */
122  public function getBrand()
123  {
124    return $this->brand;
125  }
126  /**
127   * @param float[]
128   */
129  public function setCpuShutdownTemperatures($cpuShutdownTemperatures)
130  {
131    $this->cpuShutdownTemperatures = $cpuShutdownTemperatures;
132  }
133  /**
134   * @return float[]
135   */
136  public function getCpuShutdownTemperatures()
137  {
138    return $this->cpuShutdownTemperatures;
139  }
140  /**
141   * @param float[]
142   */
143  public function setCpuThrottlingTemperatures($cpuThrottlingTemperatures)
144  {
145    $this->cpuThrottlingTemperatures = $cpuThrottlingTemperatures;
146  }
147  /**
148   * @return float[]
149   */
150  public function getCpuThrottlingTemperatures()
151  {
152    return $this->cpuThrottlingTemperatures;
153  }
154  /**
155   * @param string
156   */
157  public function setDeviceBasebandVersion($deviceBasebandVersion)
158  {
159    $this->deviceBasebandVersion = $deviceBasebandVersion;
160  }
161  /**
162   * @return string
163   */
164  public function getDeviceBasebandVersion()
165  {
166    return $this->deviceBasebandVersion;
167  }
168  /**
169   * @param string
170   */
171  public function setEnterpriseSpecificId($enterpriseSpecificId)
172  {
173    $this->enterpriseSpecificId = $enterpriseSpecificId;
174  }
175  /**
176   * @return string
177   */
178  public function getEnterpriseSpecificId()
179  {
180    return $this->enterpriseSpecificId;
181  }
182  /**
183   * @param float[]
184   */
185  public function setGpuShutdownTemperatures($gpuShutdownTemperatures)
186  {
187    $this->gpuShutdownTemperatures = $gpuShutdownTemperatures;
188  }
189  /**
190   * @return float[]
191   */
192  public function getGpuShutdownTemperatures()
193  {
194    return $this->gpuShutdownTemperatures;
195  }
196  /**
197   * @param float[]
198   */
199  public function setGpuThrottlingTemperatures($gpuThrottlingTemperatures)
200  {
201    $this->gpuThrottlingTemperatures = $gpuThrottlingTemperatures;
202  }
203  /**
204   * @return float[]
205   */
206  public function getGpuThrottlingTemperatures()
207  {
208    return $this->gpuThrottlingTemperatures;
209  }
210  /**
211   * @param string
212   */
213  public function setHardware($hardware)
214  {
215    $this->hardware = $hardware;
216  }
217  /**
218   * @return string
219   */
220  public function getHardware()
221  {
222    return $this->hardware;
223  }
224  /**
225   * @param string
226   */
227  public function setManufacturer($manufacturer)
228  {
229    $this->manufacturer = $manufacturer;
230  }
231  /**
232   * @return string
233   */
234  public function getManufacturer()
235  {
236    return $this->manufacturer;
237  }
238  /**
239   * @param string
240   */
241  public function setModel($model)
242  {
243    $this->model = $model;
244  }
245  /**
246   * @return string
247   */
248  public function getModel()
249  {
250    return $this->model;
251  }
252  /**
253   * @param string
254   */
255  public function setSerialNumber($serialNumber)
256  {
257    $this->serialNumber = $serialNumber;
258  }
259  /**
260   * @return string
261   */
262  public function getSerialNumber()
263  {
264    return $this->serialNumber;
265  }
266  /**
267   * @param float[]
268   */
269  public function setSkinShutdownTemperatures($skinShutdownTemperatures)
270  {
271    $this->skinShutdownTemperatures = $skinShutdownTemperatures;
272  }
273  /**
274   * @return float[]
275   */
276  public function getSkinShutdownTemperatures()
277  {
278    return $this->skinShutdownTemperatures;
279  }
280  /**
281   * @param float[]
282   */
283  public function setSkinThrottlingTemperatures($skinThrottlingTemperatures)
284  {
285    $this->skinThrottlingTemperatures = $skinThrottlingTemperatures;
286  }
287  /**
288   * @return float[]
289   */
290  public function getSkinThrottlingTemperatures()
291  {
292    return $this->skinThrottlingTemperatures;
293  }
294}
295
296// Adding a class alias for backwards compatibility with the previous class name.
297class_alias(HardwareInfo::class, 'Google_Service_AndroidManagement_HardwareInfo');
298