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_AndroidPublisher_DeviceMetadata extends Google_Model
19{
20  public $cpuMake;
21  public $cpuModel;
22  public $deviceClass;
23  public $glEsVersion;
24  public $manufacturer;
25  public $nativePlatform;
26  public $productName;
27  public $ramMb;
28  public $screenDensityDpi;
29  public $screenHeightPx;
30  public $screenWidthPx;
31
32  public function setCpuMake($cpuMake)
33  {
34    $this->cpuMake = $cpuMake;
35  }
36  public function getCpuMake()
37  {
38    return $this->cpuMake;
39  }
40  public function setCpuModel($cpuModel)
41  {
42    $this->cpuModel = $cpuModel;
43  }
44  public function getCpuModel()
45  {
46    return $this->cpuModel;
47  }
48  public function setDeviceClass($deviceClass)
49  {
50    $this->deviceClass = $deviceClass;
51  }
52  public function getDeviceClass()
53  {
54    return $this->deviceClass;
55  }
56  public function setGlEsVersion($glEsVersion)
57  {
58    $this->glEsVersion = $glEsVersion;
59  }
60  public function getGlEsVersion()
61  {
62    return $this->glEsVersion;
63  }
64  public function setManufacturer($manufacturer)
65  {
66    $this->manufacturer = $manufacturer;
67  }
68  public function getManufacturer()
69  {
70    return $this->manufacturer;
71  }
72  public function setNativePlatform($nativePlatform)
73  {
74    $this->nativePlatform = $nativePlatform;
75  }
76  public function getNativePlatform()
77  {
78    return $this->nativePlatform;
79  }
80  public function setProductName($productName)
81  {
82    $this->productName = $productName;
83  }
84  public function getProductName()
85  {
86    return $this->productName;
87  }
88  public function setRamMb($ramMb)
89  {
90    $this->ramMb = $ramMb;
91  }
92  public function getRamMb()
93  {
94    return $this->ramMb;
95  }
96  public function setScreenDensityDpi($screenDensityDpi)
97  {
98    $this->screenDensityDpi = $screenDensityDpi;
99  }
100  public function getScreenDensityDpi()
101  {
102    return $this->screenDensityDpi;
103  }
104  public function setScreenHeightPx($screenHeightPx)
105  {
106    $this->screenHeightPx = $screenHeightPx;
107  }
108  public function getScreenHeightPx()
109  {
110    return $this->screenHeightPx;
111  }
112  public function setScreenWidthPx($screenWidthPx)
113  {
114    $this->screenWidthPx = $screenWidthPx;
115  }
116  public function getScreenWidthPx()
117  {
118    return $this->screenWidthPx;
119  }
120}
121