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_UserComment extends Google_Model
19{
20  public $androidOsVersion;
21  public $appVersionCode;
22  public $appVersionName;
23  public $device;
24  protected $deviceMetadataType = 'Google_Service_AndroidPublisher_DeviceMetadata';
25  protected $deviceMetadataDataType = '';
26  protected $lastModifiedType = 'Google_Service_AndroidPublisher_Timestamp';
27  protected $lastModifiedDataType = '';
28  public $originalText;
29  public $reviewerLanguage;
30  public $starRating;
31  public $text;
32  public $thumbsDownCount;
33  public $thumbsUpCount;
34
35  public function setAndroidOsVersion($androidOsVersion)
36  {
37    $this->androidOsVersion = $androidOsVersion;
38  }
39  public function getAndroidOsVersion()
40  {
41    return $this->androidOsVersion;
42  }
43  public function setAppVersionCode($appVersionCode)
44  {
45    $this->appVersionCode = $appVersionCode;
46  }
47  public function getAppVersionCode()
48  {
49    return $this->appVersionCode;
50  }
51  public function setAppVersionName($appVersionName)
52  {
53    $this->appVersionName = $appVersionName;
54  }
55  public function getAppVersionName()
56  {
57    return $this->appVersionName;
58  }
59  public function setDevice($device)
60  {
61    $this->device = $device;
62  }
63  public function getDevice()
64  {
65    return $this->device;
66  }
67  /**
68   * @param Google_Service_AndroidPublisher_DeviceMetadata
69   */
70  public function setDeviceMetadata(Google_Service_AndroidPublisher_DeviceMetadata $deviceMetadata)
71  {
72    $this->deviceMetadata = $deviceMetadata;
73  }
74  /**
75   * @return Google_Service_AndroidPublisher_DeviceMetadata
76   */
77  public function getDeviceMetadata()
78  {
79    return $this->deviceMetadata;
80  }
81  /**
82   * @param Google_Service_AndroidPublisher_Timestamp
83   */
84  public function setLastModified(Google_Service_AndroidPublisher_Timestamp $lastModified)
85  {
86    $this->lastModified = $lastModified;
87  }
88  /**
89   * @return Google_Service_AndroidPublisher_Timestamp
90   */
91  public function getLastModified()
92  {
93    return $this->lastModified;
94  }
95  public function setOriginalText($originalText)
96  {
97    $this->originalText = $originalText;
98  }
99  public function getOriginalText()
100  {
101    return $this->originalText;
102  }
103  public function setReviewerLanguage($reviewerLanguage)
104  {
105    $this->reviewerLanguage = $reviewerLanguage;
106  }
107  public function getReviewerLanguage()
108  {
109    return $this->reviewerLanguage;
110  }
111  public function setStarRating($starRating)
112  {
113    $this->starRating = $starRating;
114  }
115  public function getStarRating()
116  {
117    return $this->starRating;
118  }
119  public function setText($text)
120  {
121    $this->text = $text;
122  }
123  public function getText()
124  {
125    return $this->text;
126  }
127  public function setThumbsDownCount($thumbsDownCount)
128  {
129    $this->thumbsDownCount = $thumbsDownCount;
130  }
131  public function getThumbsDownCount()
132  {
133    return $this->thumbsDownCount;
134  }
135  public function setThumbsUpCount($thumbsUpCount)
136  {
137    $this->thumbsUpCount = $thumbsUpCount;
138  }
139  public function getThumbsUpCount()
140  {
141    return $this->thumbsUpCount;
142  }
143}
144