source: vendor/google/apiclient-services/src/SA360/GoogleAdsSearchads360V0ResourcesAdGroupCriterion.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 10.0 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 GoogleAdsSearchads360V0ResourcesAdGroupCriterion extends \Google\Collection
21{
22 protected $collection_key = 'labels';
23 /**
24 * @var string
25 */
26 public $adGroup;
27 protected $ageRangeType = GoogleAdsSearchads360V0CommonAgeRangeInfo::class;
28 protected $ageRangeDataType = '';
29 public $bidModifier;
30 /**
31 * @var string
32 */
33 public $cpcBidMicros;
34 /**
35 * @var string
36 */
37 public $creationTime;
38 /**
39 * @var string
40 */
41 public $criterionId;
42 /**
43 * @var string
44 */
45 public $effectiveCpcBidMicros;
46 /**
47 * @var string[]
48 */
49 public $effectiveLabels;
50 /**
51 * @var string
52 */
53 public $engineId;
54 /**
55 * @var string
56 */
57 public $engineStatus;
58 /**
59 * @var string
60 */
61 public $finalUrlSuffix;
62 /**
63 * @var string[]
64 */
65 public $finalUrls;
66 protected $genderType = GoogleAdsSearchads360V0CommonGenderInfo::class;
67 protected $genderDataType = '';
68 protected $keywordType = GoogleAdsSearchads360V0CommonKeywordInfo::class;
69 protected $keywordDataType = '';
70 /**
71 * @var string[]
72 */
73 public $labels;
74 /**
75 * @var string
76 */
77 public $lastModifiedTime;
78 protected $listingGroupType = GoogleAdsSearchads360V0CommonListingGroupInfo::class;
79 protected $listingGroupDataType = '';
80 protected $locationType = GoogleAdsSearchads360V0CommonLocationInfo::class;
81 protected $locationDataType = '';
82 /**
83 * @var bool
84 */
85 public $negative;
86 protected $positionEstimatesType = GoogleAdsSearchads360V0ResourcesAdGroupCriterionPositionEstimates::class;
87 protected $positionEstimatesDataType = '';
88 protected $qualityInfoType = GoogleAdsSearchads360V0ResourcesAdGroupCriterionQualityInfo::class;
89 protected $qualityInfoDataType = '';
90 /**
91 * @var string
92 */
93 public $resourceName;
94 /**
95 * @var string
96 */
97 public $status;
98 /**
99 * @var string
100 */
101 public $trackingUrlTemplate;
102 /**
103 * @var string
104 */
105 public $type;
106 protected $userListType = GoogleAdsSearchads360V0CommonUserListInfo::class;
107 protected $userListDataType = '';
108 protected $webpageType = GoogleAdsSearchads360V0CommonWebpageInfo::class;
109 protected $webpageDataType = '';
110
111 /**
112 * @param string
113 */
114 public function setAdGroup($adGroup)
115 {
116 $this->adGroup = $adGroup;
117 }
118 /**
119 * @return string
120 */
121 public function getAdGroup()
122 {
123 return $this->adGroup;
124 }
125 /**
126 * @param GoogleAdsSearchads360V0CommonAgeRangeInfo
127 */
128 public function setAgeRange(GoogleAdsSearchads360V0CommonAgeRangeInfo $ageRange)
129 {
130 $this->ageRange = $ageRange;
131 }
132 /**
133 * @return GoogleAdsSearchads360V0CommonAgeRangeInfo
134 */
135 public function getAgeRange()
136 {
137 return $this->ageRange;
138 }
139 public function setBidModifier($bidModifier)
140 {
141 $this->bidModifier = $bidModifier;
142 }
143 public function getBidModifier()
144 {
145 return $this->bidModifier;
146 }
147 /**
148 * @param string
149 */
150 public function setCpcBidMicros($cpcBidMicros)
151 {
152 $this->cpcBidMicros = $cpcBidMicros;
153 }
154 /**
155 * @return string
156 */
157 public function getCpcBidMicros()
158 {
159 return $this->cpcBidMicros;
160 }
161 /**
162 * @param string
163 */
164 public function setCreationTime($creationTime)
165 {
166 $this->creationTime = $creationTime;
167 }
168 /**
169 * @return string
170 */
171 public function getCreationTime()
172 {
173 return $this->creationTime;
174 }
175 /**
176 * @param string
177 */
178 public function setCriterionId($criterionId)
179 {
180 $this->criterionId = $criterionId;
181 }
182 /**
183 * @return string
184 */
185 public function getCriterionId()
186 {
187 return $this->criterionId;
188 }
189 /**
190 * @param string
191 */
192 public function setEffectiveCpcBidMicros($effectiveCpcBidMicros)
193 {
194 $this->effectiveCpcBidMicros = $effectiveCpcBidMicros;
195 }
196 /**
197 * @return string
198 */
199 public function getEffectiveCpcBidMicros()
200 {
201 return $this->effectiveCpcBidMicros;
202 }
203 /**
204 * @param string[]
205 */
206 public function setEffectiveLabels($effectiveLabels)
207 {
208 $this->effectiveLabels = $effectiveLabels;
209 }
210 /**
211 * @return string[]
212 */
213 public function getEffectiveLabels()
214 {
215 return $this->effectiveLabels;
216 }
217 /**
218 * @param string
219 */
220 public function setEngineId($engineId)
221 {
222 $this->engineId = $engineId;
223 }
224 /**
225 * @return string
226 */
227 public function getEngineId()
228 {
229 return $this->engineId;
230 }
231 /**
232 * @param string
233 */
234 public function setEngineStatus($engineStatus)
235 {
236 $this->engineStatus = $engineStatus;
237 }
238 /**
239 * @return string
240 */
241 public function getEngineStatus()
242 {
243 return $this->engineStatus;
244 }
245 /**
246 * @param string
247 */
248 public function setFinalUrlSuffix($finalUrlSuffix)
249 {
250 $this->finalUrlSuffix = $finalUrlSuffix;
251 }
252 /**
253 * @return string
254 */
255 public function getFinalUrlSuffix()
256 {
257 return $this->finalUrlSuffix;
258 }
259 /**
260 * @param string[]
261 */
262 public function setFinalUrls($finalUrls)
263 {
264 $this->finalUrls = $finalUrls;
265 }
266 /**
267 * @return string[]
268 */
269 public function getFinalUrls()
270 {
271 return $this->finalUrls;
272 }
273 /**
274 * @param GoogleAdsSearchads360V0CommonGenderInfo
275 */
276 public function setGender(GoogleAdsSearchads360V0CommonGenderInfo $gender)
277 {
278 $this->gender = $gender;
279 }
280 /**
281 * @return GoogleAdsSearchads360V0CommonGenderInfo
282 */
283 public function getGender()
284 {
285 return $this->gender;
286 }
287 /**
288 * @param GoogleAdsSearchads360V0CommonKeywordInfo
289 */
290 public function setKeyword(GoogleAdsSearchads360V0CommonKeywordInfo $keyword)
291 {
292 $this->keyword = $keyword;
293 }
294 /**
295 * @return GoogleAdsSearchads360V0CommonKeywordInfo
296 */
297 public function getKeyword()
298 {
299 return $this->keyword;
300 }
301 /**
302 * @param string[]
303 */
304 public function setLabels($labels)
305 {
306 $this->labels = $labels;
307 }
308 /**
309 * @return string[]
310 */
311 public function getLabels()
312 {
313 return $this->labels;
314 }
315 /**
316 * @param string
317 */
318 public function setLastModifiedTime($lastModifiedTime)
319 {
320 $this->lastModifiedTime = $lastModifiedTime;
321 }
322 /**
323 * @return string
324 */
325 public function getLastModifiedTime()
326 {
327 return $this->lastModifiedTime;
328 }
329 /**
330 * @param GoogleAdsSearchads360V0CommonListingGroupInfo
331 */
332 public function setListingGroup(GoogleAdsSearchads360V0CommonListingGroupInfo $listingGroup)
333 {
334 $this->listingGroup = $listingGroup;
335 }
336 /**
337 * @return GoogleAdsSearchads360V0CommonListingGroupInfo
338 */
339 public function getListingGroup()
340 {
341 return $this->listingGroup;
342 }
343 /**
344 * @param GoogleAdsSearchads360V0CommonLocationInfo
345 */
346 public function setLocation(GoogleAdsSearchads360V0CommonLocationInfo $location)
347 {
348 $this->location = $location;
349 }
350 /**
351 * @return GoogleAdsSearchads360V0CommonLocationInfo
352 */
353 public function getLocation()
354 {
355 return $this->location;
356 }
357 /**
358 * @param bool
359 */
360 public function setNegative($negative)
361 {
362 $this->negative = $negative;
363 }
364 /**
365 * @return bool
366 */
367 public function getNegative()
368 {
369 return $this->negative;
370 }
371 /**
372 * @param GoogleAdsSearchads360V0ResourcesAdGroupCriterionPositionEstimates
373 */
374 public function setPositionEstimates(GoogleAdsSearchads360V0ResourcesAdGroupCriterionPositionEstimates $positionEstimates)
375 {
376 $this->positionEstimates = $positionEstimates;
377 }
378 /**
379 * @return GoogleAdsSearchads360V0ResourcesAdGroupCriterionPositionEstimates
380 */
381 public function getPositionEstimates()
382 {
383 return $this->positionEstimates;
384 }
385 /**
386 * @param GoogleAdsSearchads360V0ResourcesAdGroupCriterionQualityInfo
387 */
388 public function setQualityInfo(GoogleAdsSearchads360V0ResourcesAdGroupCriterionQualityInfo $qualityInfo)
389 {
390 $this->qualityInfo = $qualityInfo;
391 }
392 /**
393 * @return GoogleAdsSearchads360V0ResourcesAdGroupCriterionQualityInfo
394 */
395 public function getQualityInfo()
396 {
397 return $this->qualityInfo;
398 }
399 /**
400 * @param string
401 */
402 public function setResourceName($resourceName)
403 {
404 $this->resourceName = $resourceName;
405 }
406 /**
407 * @return string
408 */
409 public function getResourceName()
410 {
411 return $this->resourceName;
412 }
413 /**
414 * @param string
415 */
416 public function setStatus($status)
417 {
418 $this->status = $status;
419 }
420 /**
421 * @return string
422 */
423 public function getStatus()
424 {
425 return $this->status;
426 }
427 /**
428 * @param string
429 */
430 public function setTrackingUrlTemplate($trackingUrlTemplate)
431 {
432 $this->trackingUrlTemplate = $trackingUrlTemplate;
433 }
434 /**
435 * @return string
436 */
437 public function getTrackingUrlTemplate()
438 {
439 return $this->trackingUrlTemplate;
440 }
441 /**
442 * @param string
443 */
444 public function setType($type)
445 {
446 $this->type = $type;
447 }
448 /**
449 * @return string
450 */
451 public function getType()
452 {
453 return $this->type;
454 }
455 /**
456 * @param GoogleAdsSearchads360V0CommonUserListInfo
457 */
458 public function setUserList(GoogleAdsSearchads360V0CommonUserListInfo $userList)
459 {
460 $this->userList = $userList;
461 }
462 /**
463 * @return GoogleAdsSearchads360V0CommonUserListInfo
464 */
465 public function getUserList()
466 {
467 return $this->userList;
468 }
469 /**
470 * @param GoogleAdsSearchads360V0CommonWebpageInfo
471 */
472 public function setWebpage(GoogleAdsSearchads360V0CommonWebpageInfo $webpage)
473 {
474 $this->webpage = $webpage;
475 }
476 /**
477 * @return GoogleAdsSearchads360V0CommonWebpageInfo
478 */
479 public function getWebpage()
480 {
481 return $this->webpage;
482 }
483}
484
485// Adding a class alias for backwards compatibility with the previous class name.
486class_alias(GoogleAdsSearchads360V0ResourcesAdGroupCriterion::class, 'Google_Service_SA360_GoogleAdsSearchads360V0ResourcesAdGroupCriterion');
Note: See TracBrowser for help on using the repository browser.