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