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
18class Google_Service_Testing_IosModel extends Google_Collection
19{
20  protected $collection_key = 'tags';
21  public $deviceCapabilities;
22  public $formFactor;
23  public $id;
24  public $name;
25  public $screenDensity;
26  public $screenX;
27  public $screenY;
28  public $supportedVersionIds;
29  public $tags;
30
31  public function setDeviceCapabilities($deviceCapabilities)
32  {
33    $this->deviceCapabilities = $deviceCapabilities;
34  }
35  public function getDeviceCapabilities()
36  {
37    return $this->deviceCapabilities;
38  }
39  public function setFormFactor($formFactor)
40  {
41    $this->formFactor = $formFactor;
42  }
43  public function getFormFactor()
44  {
45    return $this->formFactor;
46  }
47  public function setId($id)
48  {
49    $this->id = $id;
50  }
51  public function getId()
52  {
53    return $this->id;
54  }
55  public function setName($name)
56  {
57    $this->name = $name;
58  }
59  public function getName()
60  {
61    return $this->name;
62  }
63  public function setScreenDensity($screenDensity)
64  {
65    $this->screenDensity = $screenDensity;
66  }
67  public function getScreenDensity()
68  {
69    return $this->screenDensity;
70  }
71  public function setScreenX($screenX)
72  {
73    $this->screenX = $screenX;
74  }
75  public function getScreenX()
76  {
77    return $this->screenX;
78  }
79  public function setScreenY($screenY)
80  {
81    $this->screenY = $screenY;
82  }
83  public function getScreenY()
84  {
85    return $this->screenY;
86  }
87  public function setSupportedVersionIds($supportedVersionIds)
88  {
89    $this->supportedVersionIds = $supportedVersionIds;
90  }
91  public function getSupportedVersionIds()
92  {
93    return $this->supportedVersionIds;
94  }
95  public function setTags($tags)
96  {
97    $this->tags = $tags;
98  }
99  public function getTags()
100  {
101    return $this->tags;
102  }
103}
104