source: vendor/google/apiclient-services/src/SA360/GoogleAdsSearchads360V0ResourcesAdGroup.php

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

Upload project files

  • Property mode set to 100644
File size: 5.7 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\SA360;
19
20class GoogleAdsSearchads360V0ResourcesAdGroup extends \Google\Collection
21{
22 protected $collection_key = 'labels';
23 /**
24 * @var string
25 */
26 public $adRotationMode;
27 /**
28 * @var string
29 */
30 public $cpcBidMicros;
31 /**
32 * @var string
33 */
34 public $creationTime;
35 /**
36 * @var string[]
37 */
38 public $effectiveLabels;
39 /**
40 * @var string
41 */
42 public $endDate;
43 /**
44 * @var string
45 */
46 public $engineId;
47 /**
48 * @var string
49 */
50 public $engineStatus;
51 /**
52 * @var string
53 */
54 public $id;
55 /**
56 * @var string[]
57 */
58 public $labels;
59 /**
60 * @var string
61 */
62 public $languageCode;
63 /**
64 * @var string
65 */
66 public $lastModifiedTime;
67 /**
68 * @var string
69 */
70 public $name;
71 /**
72 * @var string
73 */
74 public $resourceName;
75 /**
76 * @var string
77 */
78 public $startDate;
79 /**
80 * @var string
81 */
82 public $status;
83 protected $targetingSettingType = GoogleAdsSearchads360V0CommonTargetingSetting::class;
84 protected $targetingSettingDataType = '';
85 /**
86 * @var string
87 */
88 public $type;
89
90 /**
91 * @param string
92 */
93 public function setAdRotationMode($adRotationMode)
94 {
95 $this->adRotationMode = $adRotationMode;
96 }
97 /**
98 * @return string
99 */
100 public function getAdRotationMode()
101 {
102 return $this->adRotationMode;
103 }
104 /**
105 * @param string
106 */
107 public function setCpcBidMicros($cpcBidMicros)
108 {
109 $this->cpcBidMicros = $cpcBidMicros;
110 }
111 /**
112 * @return string
113 */
114 public function getCpcBidMicros()
115 {
116 return $this->cpcBidMicros;
117 }
118 /**
119 * @param string
120 */
121 public function setCreationTime($creationTime)
122 {
123 $this->creationTime = $creationTime;
124 }
125 /**
126 * @return string
127 */
128 public function getCreationTime()
129 {
130 return $this->creationTime;
131 }
132 /**
133 * @param string[]
134 */
135 public function setEffectiveLabels($effectiveLabels)
136 {
137 $this->effectiveLabels = $effectiveLabels;
138 }
139 /**
140 * @return string[]
141 */
142 public function getEffectiveLabels()
143 {
144 return $this->effectiveLabels;
145 }
146 /**
147 * @param string
148 */
149 public function setEndDate($endDate)
150 {
151 $this->endDate = $endDate;
152 }
153 /**
154 * @return string
155 */
156 public function getEndDate()
157 {
158 return $this->endDate;
159 }
160 /**
161 * @param string
162 */
163 public function setEngineId($engineId)
164 {
165 $this->engineId = $engineId;
166 }
167 /**
168 * @return string
169 */
170 public function getEngineId()
171 {
172 return $this->engineId;
173 }
174 /**
175 * @param string
176 */
177 public function setEngineStatus($engineStatus)
178 {
179 $this->engineStatus = $engineStatus;
180 }
181 /**
182 * @return string
183 */
184 public function getEngineStatus()
185 {
186 return $this->engineStatus;
187 }
188 /**
189 * @param string
190 */
191 public function setId($id)
192 {
193 $this->id = $id;
194 }
195 /**
196 * @return string
197 */
198 public function getId()
199 {
200 return $this->id;
201 }
202 /**
203 * @param string[]
204 */
205 public function setLabels($labels)
206 {
207 $this->labels = $labels;
208 }
209 /**
210 * @return string[]
211 */
212 public function getLabels()
213 {
214 return $this->labels;
215 }
216 /**
217 * @param string
218 */
219 public function setLanguageCode($languageCode)
220 {
221 $this->languageCode = $languageCode;
222 }
223 /**
224 * @return string
225 */
226 public function getLanguageCode()
227 {
228 return $this->languageCode;
229 }
230 /**
231 * @param string
232 */
233 public function setLastModifiedTime($lastModifiedTime)
234 {
235 $this->lastModifiedTime = $lastModifiedTime;
236 }
237 /**
238 * @return string
239 */
240 public function getLastModifiedTime()
241 {
242 return $this->lastModifiedTime;
243 }
244 /**
245 * @param string
246 */
247 public function setName($name)
248 {
249 $this->name = $name;
250 }
251 /**
252 * @return string
253 */
254 public function getName()
255 {
256 return $this->name;
257 }
258 /**
259 * @param string
260 */
261 public function setResourceName($resourceName)
262 {
263 $this->resourceName = $resourceName;
264 }
265 /**
266 * @return string
267 */
268 public function getResourceName()
269 {
270 return $this->resourceName;
271 }
272 /**
273 * @param string
274 */
275 public function setStartDate($startDate)
276 {
277 $this->startDate = $startDate;
278 }
279 /**
280 * @return string
281 */
282 public function getStartDate()
283 {
284 return $this->startDate;
285 }
286 /**
287 * @param string
288 */
289 public function setStatus($status)
290 {
291 $this->status = $status;
292 }
293 /**
294 * @return string
295 */
296 public function getStatus()
297 {
298 return $this->status;
299 }
300 /**
301 * @param GoogleAdsSearchads360V0CommonTargetingSetting
302 */
303 public function setTargetingSetting(GoogleAdsSearchads360V0CommonTargetingSetting $targetingSetting)
304 {
305 $this->targetingSetting = $targetingSetting;
306 }
307 /**
308 * @return GoogleAdsSearchads360V0CommonTargetingSetting
309 */
310 public function getTargetingSetting()
311 {
312 return $this->targetingSetting;
313 }
314 /**
315 * @param string
316 */
317 public function setType($type)
318 {
319 $this->type = $type;
320 }
321 /**
322 * @return string
323 */
324 public function getType()
325 {
326 return $this->type;
327 }
328}
329
330// Adding a class alias for backwards compatibility with the previous class name.
331class_alias(GoogleAdsSearchads360V0ResourcesAdGroup::class, 'Google_Service_SA360_GoogleAdsSearchads360V0ResourcesAdGroup');
Note: See TracBrowser for help on using the repository browser.