source: vendor/google/apiclient-services/src/AndroidPublisher/ApkDescription.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 13 days ago

Upload new project files

  • Property mode set to 100644
File size: 3.1 KB
Line 
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\AndroidPublisher;
19
20class ApkDescription extends \Google\Model
21{
22 protected $assetSliceMetadataType = SplitApkMetadata::class;
23 protected $assetSliceMetadataDataType = '';
24 protected $instantApkMetadataType = SplitApkMetadata::class;
25 protected $instantApkMetadataDataType = '';
26 /**
27 * @var string
28 */
29 public $path;
30 protected $splitApkMetadataType = SplitApkMetadata::class;
31 protected $splitApkMetadataDataType = '';
32 protected $standaloneApkMetadataType = StandaloneApkMetadata::class;
33 protected $standaloneApkMetadataDataType = '';
34 protected $targetingType = ApkTargeting::class;
35 protected $targetingDataType = '';
36
37 /**
38 * @param SplitApkMetadata
39 */
40 public function setAssetSliceMetadata(SplitApkMetadata $assetSliceMetadata)
41 {
42 $this->assetSliceMetadata = $assetSliceMetadata;
43 }
44 /**
45 * @return SplitApkMetadata
46 */
47 public function getAssetSliceMetadata()
48 {
49 return $this->assetSliceMetadata;
50 }
51 /**
52 * @param SplitApkMetadata
53 */
54 public function setInstantApkMetadata(SplitApkMetadata $instantApkMetadata)
55 {
56 $this->instantApkMetadata = $instantApkMetadata;
57 }
58 /**
59 * @return SplitApkMetadata
60 */
61 public function getInstantApkMetadata()
62 {
63 return $this->instantApkMetadata;
64 }
65 /**
66 * @param string
67 */
68 public function setPath($path)
69 {
70 $this->path = $path;
71 }
72 /**
73 * @return string
74 */
75 public function getPath()
76 {
77 return $this->path;
78 }
79 /**
80 * @param SplitApkMetadata
81 */
82 public function setSplitApkMetadata(SplitApkMetadata $splitApkMetadata)
83 {
84 $this->splitApkMetadata = $splitApkMetadata;
85 }
86 /**
87 * @return SplitApkMetadata
88 */
89 public function getSplitApkMetadata()
90 {
91 return $this->splitApkMetadata;
92 }
93 /**
94 * @param StandaloneApkMetadata
95 */
96 public function setStandaloneApkMetadata(StandaloneApkMetadata $standaloneApkMetadata)
97 {
98 $this->standaloneApkMetadata = $standaloneApkMetadata;
99 }
100 /**
101 * @return StandaloneApkMetadata
102 */
103 public function getStandaloneApkMetadata()
104 {
105 return $this->standaloneApkMetadata;
106 }
107 /**
108 * @param ApkTargeting
109 */
110 public function setTargeting(ApkTargeting $targeting)
111 {
112 $this->targeting = $targeting;
113 }
114 /**
115 * @return ApkTargeting
116 */
117 public function getTargeting()
118 {
119 return $this->targeting;
120 }
121}
122
123// Adding a class alias for backwards compatibility with the previous class name.
124class_alias(ApkDescription::class, 'Google_Service_AndroidPublisher_ApkDescription');
Note: See TracBrowser for help on using the repository browser.