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\ChromeManagement; 19 20class GoogleChromeManagementV1AppDetails extends \Google\Model 21{ 22 protected $androidAppInfoType = GoogleChromeManagementV1AndroidAppInfo::class; 23 protected $androidAppInfoDataType = ''; 24 /** 25 * @var string 26 */ 27 public $appId; 28 protected $chromeAppInfoType = GoogleChromeManagementV1ChromeAppInfo::class; 29 protected $chromeAppInfoDataType = ''; 30 /** 31 * @var string 32 */ 33 public $description; 34 /** 35 * @var string 36 */ 37 public $detailUri; 38 /** 39 * @var string 40 */ 41 public $displayName; 42 /** 43 * @var string 44 */ 45 public $firstPublishTime; 46 /** 47 * @var string 48 */ 49 public $homepageUri; 50 /** 51 * @var string 52 */ 53 public $iconUri; 54 /** 55 * @var bool 56 */ 57 public $isPaidApp; 58 /** 59 * @var string 60 */ 61 public $latestPublishTime; 62 /** 63 * @var string 64 */ 65 public $name; 66 /** 67 * @var string 68 */ 69 public $privacyPolicyUri; 70 /** 71 * @var string 72 */ 73 public $publisher; 74 /** 75 * @var string 76 */ 77 public $reviewNumber; 78 /** 79 * @var float 80 */ 81 public $reviewRating; 82 /** 83 * @var string 84 */ 85 public $revisionId; 86 protected $serviceErrorType = GoogleRpcStatus::class; 87 protected $serviceErrorDataType = ''; 88 /** 89 * @var string 90 */ 91 public $type; 92 93 /** 94 * @param GoogleChromeManagementV1AndroidAppInfo 95 */ 96 public function setAndroidAppInfo(GoogleChromeManagementV1AndroidAppInfo $androidAppInfo) 97 { 98 $this->androidAppInfo = $androidAppInfo; 99 } 100 /** 101 * @return GoogleChromeManagementV1AndroidAppInfo 102 */ 103 public function getAndroidAppInfo() 104 { 105 return $this->androidAppInfo; 106 } 107 /** 108 * @param string 109 */ 110 public function setAppId($appId) 111 { 112 $this->appId = $appId; 113 } 114 /** 115 * @return string 116 */ 117 public function getAppId() 118 { 119 return $this->appId; 120 } 121 /** 122 * @param GoogleChromeManagementV1ChromeAppInfo 123 */ 124 public function setChromeAppInfo(GoogleChromeManagementV1ChromeAppInfo $chromeAppInfo) 125 { 126 $this->chromeAppInfo = $chromeAppInfo; 127 } 128 /** 129 * @return GoogleChromeManagementV1ChromeAppInfo 130 */ 131 public function getChromeAppInfo() 132 { 133 return $this->chromeAppInfo; 134 } 135 /** 136 * @param string 137 */ 138 public function setDescription($description) 139 { 140 $this->description = $description; 141 } 142 /** 143 * @return string 144 */ 145 public function getDescription() 146 { 147 return $this->description; 148 } 149 /** 150 * @param string 151 */ 152 public function setDetailUri($detailUri) 153 { 154 $this->detailUri = $detailUri; 155 } 156 /** 157 * @return string 158 */ 159 public function getDetailUri() 160 { 161 return $this->detailUri; 162 } 163 /** 164 * @param string 165 */ 166 public function setDisplayName($displayName) 167 { 168 $this->displayName = $displayName; 169 } 170 /** 171 * @return string 172 */ 173 public function getDisplayName() 174 { 175 return $this->displayName; 176 } 177 /** 178 * @param string 179 */ 180 public function setFirstPublishTime($firstPublishTime) 181 { 182 $this->firstPublishTime = $firstPublishTime; 183 } 184 /** 185 * @return string 186 */ 187 public function getFirstPublishTime() 188 { 189 return $this->firstPublishTime; 190 } 191 /** 192 * @param string 193 */ 194 public function setHomepageUri($homepageUri) 195 { 196 $this->homepageUri = $homepageUri; 197 } 198 /** 199 * @return string 200 */ 201 public function getHomepageUri() 202 { 203 return $this->homepageUri; 204 } 205 /** 206 * @param string 207 */ 208 public function setIconUri($iconUri) 209 { 210 $this->iconUri = $iconUri; 211 } 212 /** 213 * @return string 214 */ 215 public function getIconUri() 216 { 217 return $this->iconUri; 218 } 219 /** 220 * @param bool 221 */ 222 public function setIsPaidApp($isPaidApp) 223 { 224 $this->isPaidApp = $isPaidApp; 225 } 226 /** 227 * @return bool 228 */ 229 public function getIsPaidApp() 230 { 231 return $this->isPaidApp; 232 } 233 /** 234 * @param string 235 */ 236 public function setLatestPublishTime($latestPublishTime) 237 { 238 $this->latestPublishTime = $latestPublishTime; 239 } 240 /** 241 * @return string 242 */ 243 public function getLatestPublishTime() 244 { 245 return $this->latestPublishTime; 246 } 247 /** 248 * @param string 249 */ 250 public function setName($name) 251 { 252 $this->name = $name; 253 } 254 /** 255 * @return string 256 */ 257 public function getName() 258 { 259 return $this->name; 260 } 261 /** 262 * @param string 263 */ 264 public function setPrivacyPolicyUri($privacyPolicyUri) 265 { 266 $this->privacyPolicyUri = $privacyPolicyUri; 267 } 268 /** 269 * @return string 270 */ 271 public function getPrivacyPolicyUri() 272 { 273 return $this->privacyPolicyUri; 274 } 275 /** 276 * @param string 277 */ 278 public function setPublisher($publisher) 279 { 280 $this->publisher = $publisher; 281 } 282 /** 283 * @return string 284 */ 285 public function getPublisher() 286 { 287 return $this->publisher; 288 } 289 /** 290 * @param string 291 */ 292 public function setReviewNumber($reviewNumber) 293 { 294 $this->reviewNumber = $reviewNumber; 295 } 296 /** 297 * @return string 298 */ 299 public function getReviewNumber() 300 { 301 return $this->reviewNumber; 302 } 303 /** 304 * @param float 305 */ 306 public function setReviewRating($reviewRating) 307 { 308 $this->reviewRating = $reviewRating; 309 } 310 /** 311 * @return float 312 */ 313 public function getReviewRating() 314 { 315 return $this->reviewRating; 316 } 317 /** 318 * @param string 319 */ 320 public function setRevisionId($revisionId) 321 { 322 $this->revisionId = $revisionId; 323 } 324 /** 325 * @return string 326 */ 327 public function getRevisionId() 328 { 329 return $this->revisionId; 330 } 331 /** 332 * @param GoogleRpcStatus 333 */ 334 public function setServiceError(GoogleRpcStatus $serviceError) 335 { 336 $this->serviceError = $serviceError; 337 } 338 /** 339 * @return GoogleRpcStatus 340 */ 341 public function getServiceError() 342 { 343 return $this->serviceError; 344 } 345 /** 346 * @param string 347 */ 348 public function setType($type) 349 { 350 $this->type = $type; 351 } 352 /** 353 * @return string 354 */ 355 public function getType() 356 { 357 return $this->type; 358 } 359} 360 361// Adding a class alias for backwards compatibility with the previous class name. 362class_alias(GoogleChromeManagementV1AppDetails::class, 'Google_Service_ChromeManagement_GoogleChromeManagementV1AppDetails'); 363