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\Testing;
19
20class AndroidModel extends \Google\Collection
21{
22  protected $collection_key = 'tags';
23  /**
24   * @var string
25   */
26  public $brand;
27  /**
28   * @var string
29   */
30  public $codename;
31  /**
32   * @var string
33   */
34  public $form;
35  /**
36   * @var string
37   */
38  public $formFactor;
39  /**
40   * @var string
41   */
42  public $id;
43  /**
44   * @var bool
45   */
46  public $lowFpsVideoRecording;
47  /**
48   * @var string
49   */
50  public $manufacturer;
51  /**
52   * @var string
53   */
54  public $name;
55  /**
56   * @var int
57   */
58  public $screenDensity;
59  /**
60   * @var int
61   */
62  public $screenX;
63  /**
64   * @var int
65   */
66  public $screenY;
67  /**
68   * @var string[]
69   */
70  public $supportedAbis;
71  /**
72   * @var string[]
73   */
74  public $supportedVersionIds;
75  /**
76   * @var string[]
77   */
78  public $tags;
79  /**
80   * @var string
81   */
82  public $thumbnailUrl;
83
84  /**
85   * @param string
86   */
87  public function setBrand($brand)
88  {
89    $this->brand = $brand;
90  }
91  /**
92   * @return string
93   */
94  public function getBrand()
95  {
96    return $this->brand;
97  }
98  /**
99   * @param string
100   */
101  public function setCodename($codename)
102  {
103    $this->codename = $codename;
104  }
105  /**
106   * @return string
107   */
108  public function getCodename()
109  {
110    return $this->codename;
111  }
112  /**
113   * @param string
114   */
115  public function setForm($form)
116  {
117    $this->form = $form;
118  }
119  /**
120   * @return string
121   */
122  public function getForm()
123  {
124    return $this->form;
125  }
126  /**
127   * @param string
128   */
129  public function setFormFactor($formFactor)
130  {
131    $this->formFactor = $formFactor;
132  }
133  /**
134   * @return string
135   */
136  public function getFormFactor()
137  {
138    return $this->formFactor;
139  }
140  /**
141   * @param string
142   */
143  public function setId($id)
144  {
145    $this->id = $id;
146  }
147  /**
148   * @return string
149   */
150  public function getId()
151  {
152    return $this->id;
153  }
154  /**
155   * @param bool
156   */
157  public function setLowFpsVideoRecording($lowFpsVideoRecording)
158  {
159    $this->lowFpsVideoRecording = $lowFpsVideoRecording;
160  }
161  /**
162   * @return bool
163   */
164  public function getLowFpsVideoRecording()
165  {
166    return $this->lowFpsVideoRecording;
167  }
168  /**
169   * @param string
170   */
171  public function setManufacturer($manufacturer)
172  {
173    $this->manufacturer = $manufacturer;
174  }
175  /**
176   * @return string
177   */
178  public function getManufacturer()
179  {
180    return $this->manufacturer;
181  }
182  /**
183   * @param string
184   */
185  public function setName($name)
186  {
187    $this->name = $name;
188  }
189  /**
190   * @return string
191   */
192  public function getName()
193  {
194    return $this->name;
195  }
196  /**
197   * @param int
198   */
199  public function setScreenDensity($screenDensity)
200  {
201    $this->screenDensity = $screenDensity;
202  }
203  /**
204   * @return int
205   */
206  public function getScreenDensity()
207  {
208    return $this->screenDensity;
209  }
210  /**
211   * @param int
212   */
213  public function setScreenX($screenX)
214  {
215    $this->screenX = $screenX;
216  }
217  /**
218   * @return int
219   */
220  public function getScreenX()
221  {
222    return $this->screenX;
223  }
224  /**
225   * @param int
226   */
227  public function setScreenY($screenY)
228  {
229    $this->screenY = $screenY;
230  }
231  /**
232   * @return int
233   */
234  public function getScreenY()
235  {
236    return $this->screenY;
237  }
238  /**
239   * @param string[]
240   */
241  public function setSupportedAbis($supportedAbis)
242  {
243    $this->supportedAbis = $supportedAbis;
244  }
245  /**
246   * @return string[]
247   */
248  public function getSupportedAbis()
249  {
250    return $this->supportedAbis;
251  }
252  /**
253   * @param string[]
254   */
255  public function setSupportedVersionIds($supportedVersionIds)
256  {
257    $this->supportedVersionIds = $supportedVersionIds;
258  }
259  /**
260   * @return string[]
261   */
262  public function getSupportedVersionIds()
263  {
264    return $this->supportedVersionIds;
265  }
266  /**
267   * @param string[]
268   */
269  public function setTags($tags)
270  {
271    $this->tags = $tags;
272  }
273  /**
274   * @return string[]
275   */
276  public function getTags()
277  {
278    return $this->tags;
279  }
280  /**
281   * @param string
282   */
283  public function setThumbnailUrl($thumbnailUrl)
284  {
285    $this->thumbnailUrl = $thumbnailUrl;
286  }
287  /**
288   * @return string
289   */
290  public function getThumbnailUrl()
291  {
292    return $this->thumbnailUrl;
293  }
294}
295
296// Adding a class alias for backwards compatibility with the previous class name.
297class_alias(AndroidModel::class, 'Google_Service_Testing_AndroidModel');
298