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\AndroidPublisher;
|
---|
19 |
|
---|
20 | class ApkTargeting extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $abiTargetingType = AbiTargeting::class;
|
---|
23 | protected $abiTargetingDataType = '';
|
---|
24 | protected $languageTargetingType = LanguageTargeting::class;
|
---|
25 | protected $languageTargetingDataType = '';
|
---|
26 | protected $multiAbiTargetingType = MultiAbiTargeting::class;
|
---|
27 | protected $multiAbiTargetingDataType = '';
|
---|
28 | protected $screenDensityTargetingType = ScreenDensityTargeting::class;
|
---|
29 | protected $screenDensityTargetingDataType = '';
|
---|
30 | protected $sdkVersionTargetingType = SdkVersionTargeting::class;
|
---|
31 | protected $sdkVersionTargetingDataType = '';
|
---|
32 | protected $textureCompressionFormatTargetingType = TextureCompressionFormatTargeting::class;
|
---|
33 | protected $textureCompressionFormatTargetingDataType = '';
|
---|
34 |
|
---|
35 | /**
|
---|
36 | * @param AbiTargeting
|
---|
37 | */
|
---|
38 | public function setAbiTargeting(AbiTargeting $abiTargeting)
|
---|
39 | {
|
---|
40 | $this->abiTargeting = $abiTargeting;
|
---|
41 | }
|
---|
42 | /**
|
---|
43 | * @return AbiTargeting
|
---|
44 | */
|
---|
45 | public function getAbiTargeting()
|
---|
46 | {
|
---|
47 | return $this->abiTargeting;
|
---|
48 | }
|
---|
49 | /**
|
---|
50 | * @param LanguageTargeting
|
---|
51 | */
|
---|
52 | public function setLanguageTargeting(LanguageTargeting $languageTargeting)
|
---|
53 | {
|
---|
54 | $this->languageTargeting = $languageTargeting;
|
---|
55 | }
|
---|
56 | /**
|
---|
57 | * @return LanguageTargeting
|
---|
58 | */
|
---|
59 | public function getLanguageTargeting()
|
---|
60 | {
|
---|
61 | return $this->languageTargeting;
|
---|
62 | }
|
---|
63 | /**
|
---|
64 | * @param MultiAbiTargeting
|
---|
65 | */
|
---|
66 | public function setMultiAbiTargeting(MultiAbiTargeting $multiAbiTargeting)
|
---|
67 | {
|
---|
68 | $this->multiAbiTargeting = $multiAbiTargeting;
|
---|
69 | }
|
---|
70 | /**
|
---|
71 | * @return MultiAbiTargeting
|
---|
72 | */
|
---|
73 | public function getMultiAbiTargeting()
|
---|
74 | {
|
---|
75 | return $this->multiAbiTargeting;
|
---|
76 | }
|
---|
77 | /**
|
---|
78 | * @param ScreenDensityTargeting
|
---|
79 | */
|
---|
80 | public function setScreenDensityTargeting(ScreenDensityTargeting $screenDensityTargeting)
|
---|
81 | {
|
---|
82 | $this->screenDensityTargeting = $screenDensityTargeting;
|
---|
83 | }
|
---|
84 | /**
|
---|
85 | * @return ScreenDensityTargeting
|
---|
86 | */
|
---|
87 | public function getScreenDensityTargeting()
|
---|
88 | {
|
---|
89 | return $this->screenDensityTargeting;
|
---|
90 | }
|
---|
91 | /**
|
---|
92 | * @param SdkVersionTargeting
|
---|
93 | */
|
---|
94 | public function setSdkVersionTargeting(SdkVersionTargeting $sdkVersionTargeting)
|
---|
95 | {
|
---|
96 | $this->sdkVersionTargeting = $sdkVersionTargeting;
|
---|
97 | }
|
---|
98 | /**
|
---|
99 | * @return SdkVersionTargeting
|
---|
100 | */
|
---|
101 | public function getSdkVersionTargeting()
|
---|
102 | {
|
---|
103 | return $this->sdkVersionTargeting;
|
---|
104 | }
|
---|
105 | /**
|
---|
106 | * @param TextureCompressionFormatTargeting
|
---|
107 | */
|
---|
108 | public function setTextureCompressionFormatTargeting(TextureCompressionFormatTargeting $textureCompressionFormatTargeting)
|
---|
109 | {
|
---|
110 | $this->textureCompressionFormatTargeting = $textureCompressionFormatTargeting;
|
---|
111 | }
|
---|
112 | /**
|
---|
113 | * @return TextureCompressionFormatTargeting
|
---|
114 | */
|
---|
115 | public function getTextureCompressionFormatTargeting()
|
---|
116 | {
|
---|
117 | return $this->textureCompressionFormatTargeting;
|
---|
118 | }
|
---|
119 | }
|
---|
120 |
|
---|
121 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
122 | class_alias(ApkTargeting::class, 'Google_Service_AndroidPublisher_ApkTargeting');
|
---|