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 |
|
---|
18 | namespace Google\Service\PlayableLocations;
|
---|
19 |
|
---|
20 | class GoogleMapsUnityClientInfo extends \Google\Model
|
---|
21 | {
|
---|
22 | public $apiClient;
|
---|
23 | public $applicationId;
|
---|
24 | public $applicationVersion;
|
---|
25 | public $deviceModel;
|
---|
26 | public $languageCode;
|
---|
27 | public $operatingSystem;
|
---|
28 | public $operatingSystemBuild;
|
---|
29 | public $platform;
|
---|
30 |
|
---|
31 | public function setApiClient($apiClient)
|
---|
32 | {
|
---|
33 | $this->apiClient = $apiClient;
|
---|
34 | }
|
---|
35 | public function getApiClient()
|
---|
36 | {
|
---|
37 | return $this->apiClient;
|
---|
38 | }
|
---|
39 | public function setApplicationId($applicationId)
|
---|
40 | {
|
---|
41 | $this->applicationId = $applicationId;
|
---|
42 | }
|
---|
43 | public function getApplicationId()
|
---|
44 | {
|
---|
45 | return $this->applicationId;
|
---|
46 | }
|
---|
47 | public function setApplicationVersion($applicationVersion)
|
---|
48 | {
|
---|
49 | $this->applicationVersion = $applicationVersion;
|
---|
50 | }
|
---|
51 | public function getApplicationVersion()
|
---|
52 | {
|
---|
53 | return $this->applicationVersion;
|
---|
54 | }
|
---|
55 | public function setDeviceModel($deviceModel)
|
---|
56 | {
|
---|
57 | $this->deviceModel = $deviceModel;
|
---|
58 | }
|
---|
59 | public function getDeviceModel()
|
---|
60 | {
|
---|
61 | return $this->deviceModel;
|
---|
62 | }
|
---|
63 | public function setLanguageCode($languageCode)
|
---|
64 | {
|
---|
65 | $this->languageCode = $languageCode;
|
---|
66 | }
|
---|
67 | public function getLanguageCode()
|
---|
68 | {
|
---|
69 | return $this->languageCode;
|
---|
70 | }
|
---|
71 | public function setOperatingSystem($operatingSystem)
|
---|
72 | {
|
---|
73 | $this->operatingSystem = $operatingSystem;
|
---|
74 | }
|
---|
75 | public function getOperatingSystem()
|
---|
76 | {
|
---|
77 | return $this->operatingSystem;
|
---|
78 | }
|
---|
79 | public function setOperatingSystemBuild($operatingSystemBuild)
|
---|
80 | {
|
---|
81 | $this->operatingSystemBuild = $operatingSystemBuild;
|
---|
82 | }
|
---|
83 | public function getOperatingSystemBuild()
|
---|
84 | {
|
---|
85 | return $this->operatingSystemBuild;
|
---|
86 | }
|
---|
87 | public function setPlatform($platform)
|
---|
88 | {
|
---|
89 | $this->platform = $platform;
|
---|
90 | }
|
---|
91 | public function getPlatform()
|
---|
92 | {
|
---|
93 | return $this->platform;
|
---|
94 | }
|
---|
95 | }
|
---|
96 |
|
---|
97 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
98 | class_alias(GoogleMapsUnityClientInfo::class, 'Google_Service_PlayableLocations_GoogleMapsUnityClientInfo');
|
---|