source: vendor/google/apiclient-services/src/Dfareporting/Campaign.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: 10.8 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\Dfareporting;
19
20class Campaign extends \Google\Collection
21{
22 protected $collection_key = 'eventTagOverrides';
23 /**
24 * @var string
25 */
26 public $accountId;
27 protected $adBlockingConfigurationType = AdBlockingConfiguration::class;
28 protected $adBlockingConfigurationDataType = '';
29 protected $additionalCreativeOptimizationConfigurationsType = CreativeOptimizationConfiguration::class;
30 protected $additionalCreativeOptimizationConfigurationsDataType = 'array';
31 /**
32 * @var string
33 */
34 public $advertiserGroupId;
35 /**
36 * @var string
37 */
38 public $advertiserId;
39 protected $advertiserIdDimensionValueType = DimensionValue::class;
40 protected $advertiserIdDimensionValueDataType = '';
41 /**
42 * @var bool
43 */
44 public $archived;
45 protected $audienceSegmentGroupsType = AudienceSegmentGroup::class;
46 protected $audienceSegmentGroupsDataType = 'array';
47 /**
48 * @var string
49 */
50 public $billingInvoiceCode;
51 protected $clickThroughUrlSuffixPropertiesType = ClickThroughUrlSuffixProperties::class;
52 protected $clickThroughUrlSuffixPropertiesDataType = '';
53 /**
54 * @var string
55 */
56 public $comment;
57 protected $createInfoType = LastModifiedInfo::class;
58 protected $createInfoDataType = '';
59 /**
60 * @var string[]
61 */
62 public $creativeGroupIds;
63 protected $creativeOptimizationConfigurationType = CreativeOptimizationConfiguration::class;
64 protected $creativeOptimizationConfigurationDataType = '';
65 protected $defaultClickThroughEventTagPropertiesType = DefaultClickThroughEventTagProperties::class;
66 protected $defaultClickThroughEventTagPropertiesDataType = '';
67 /**
68 * @var string
69 */
70 public $defaultLandingPageId;
71 /**
72 * @var string
73 */
74 public $endDate;
75 protected $eventTagOverridesType = EventTagOverride::class;
76 protected $eventTagOverridesDataType = 'array';
77 /**
78 * @var string
79 */
80 public $externalId;
81 /**
82 * @var string
83 */
84 public $id;
85 protected $idDimensionValueType = DimensionValue::class;
86 protected $idDimensionValueDataType = '';
87 /**
88 * @var string
89 */
90 public $kind;
91 protected $lastModifiedInfoType = LastModifiedInfo::class;
92 protected $lastModifiedInfoDataType = '';
93 protected $measurementPartnerLinkType = MeasurementPartnerCampaignLink::class;
94 protected $measurementPartnerLinkDataType = '';
95 /**
96 * @var string
97 */
98 public $name;
99 /**
100 * @var string
101 */
102 public $startDate;
103 /**
104 * @var string
105 */
106 public $subaccountId;
107
108 /**
109 * @param string
110 */
111 public function setAccountId($accountId)
112 {
113 $this->accountId = $accountId;
114 }
115 /**
116 * @return string
117 */
118 public function getAccountId()
119 {
120 return $this->accountId;
121 }
122 /**
123 * @param AdBlockingConfiguration
124 */
125 public function setAdBlockingConfiguration(AdBlockingConfiguration $adBlockingConfiguration)
126 {
127 $this->adBlockingConfiguration = $adBlockingConfiguration;
128 }
129 /**
130 * @return AdBlockingConfiguration
131 */
132 public function getAdBlockingConfiguration()
133 {
134 return $this->adBlockingConfiguration;
135 }
136 /**
137 * @param CreativeOptimizationConfiguration[]
138 */
139 public function setAdditionalCreativeOptimizationConfigurations($additionalCreativeOptimizationConfigurations)
140 {
141 $this->additionalCreativeOptimizationConfigurations = $additionalCreativeOptimizationConfigurations;
142 }
143 /**
144 * @return CreativeOptimizationConfiguration[]
145 */
146 public function getAdditionalCreativeOptimizationConfigurations()
147 {
148 return $this->additionalCreativeOptimizationConfigurations;
149 }
150 /**
151 * @param string
152 */
153 public function setAdvertiserGroupId($advertiserGroupId)
154 {
155 $this->advertiserGroupId = $advertiserGroupId;
156 }
157 /**
158 * @return string
159 */
160 public function getAdvertiserGroupId()
161 {
162 return $this->advertiserGroupId;
163 }
164 /**
165 * @param string
166 */
167 public function setAdvertiserId($advertiserId)
168 {
169 $this->advertiserId = $advertiserId;
170 }
171 /**
172 * @return string
173 */
174 public function getAdvertiserId()
175 {
176 return $this->advertiserId;
177 }
178 /**
179 * @param DimensionValue
180 */
181 public function setAdvertiserIdDimensionValue(DimensionValue $advertiserIdDimensionValue)
182 {
183 $this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
184 }
185 /**
186 * @return DimensionValue
187 */
188 public function getAdvertiserIdDimensionValue()
189 {
190 return $this->advertiserIdDimensionValue;
191 }
192 /**
193 * @param bool
194 */
195 public function setArchived($archived)
196 {
197 $this->archived = $archived;
198 }
199 /**
200 * @return bool
201 */
202 public function getArchived()
203 {
204 return $this->archived;
205 }
206 /**
207 * @param AudienceSegmentGroup[]
208 */
209 public function setAudienceSegmentGroups($audienceSegmentGroups)
210 {
211 $this->audienceSegmentGroups = $audienceSegmentGroups;
212 }
213 /**
214 * @return AudienceSegmentGroup[]
215 */
216 public function getAudienceSegmentGroups()
217 {
218 return $this->audienceSegmentGroups;
219 }
220 /**
221 * @param string
222 */
223 public function setBillingInvoiceCode($billingInvoiceCode)
224 {
225 $this->billingInvoiceCode = $billingInvoiceCode;
226 }
227 /**
228 * @return string
229 */
230 public function getBillingInvoiceCode()
231 {
232 return $this->billingInvoiceCode;
233 }
234 /**
235 * @param ClickThroughUrlSuffixProperties
236 */
237 public function setClickThroughUrlSuffixProperties(ClickThroughUrlSuffixProperties $clickThroughUrlSuffixProperties)
238 {
239 $this->clickThroughUrlSuffixProperties = $clickThroughUrlSuffixProperties;
240 }
241 /**
242 * @return ClickThroughUrlSuffixProperties
243 */
244 public function getClickThroughUrlSuffixProperties()
245 {
246 return $this->clickThroughUrlSuffixProperties;
247 }
248 /**
249 * @param string
250 */
251 public function setComment($comment)
252 {
253 $this->comment = $comment;
254 }
255 /**
256 * @return string
257 */
258 public function getComment()
259 {
260 return $this->comment;
261 }
262 /**
263 * @param LastModifiedInfo
264 */
265 public function setCreateInfo(LastModifiedInfo $createInfo)
266 {
267 $this->createInfo = $createInfo;
268 }
269 /**
270 * @return LastModifiedInfo
271 */
272 public function getCreateInfo()
273 {
274 return $this->createInfo;
275 }
276 /**
277 * @param string[]
278 */
279 public function setCreativeGroupIds($creativeGroupIds)
280 {
281 $this->creativeGroupIds = $creativeGroupIds;
282 }
283 /**
284 * @return string[]
285 */
286 public function getCreativeGroupIds()
287 {
288 return $this->creativeGroupIds;
289 }
290 /**
291 * @param CreativeOptimizationConfiguration
292 */
293 public function setCreativeOptimizationConfiguration(CreativeOptimizationConfiguration $creativeOptimizationConfiguration)
294 {
295 $this->creativeOptimizationConfiguration = $creativeOptimizationConfiguration;
296 }
297 /**
298 * @return CreativeOptimizationConfiguration
299 */
300 public function getCreativeOptimizationConfiguration()
301 {
302 return $this->creativeOptimizationConfiguration;
303 }
304 /**
305 * @param DefaultClickThroughEventTagProperties
306 */
307 public function setDefaultClickThroughEventTagProperties(DefaultClickThroughEventTagProperties $defaultClickThroughEventTagProperties)
308 {
309 $this->defaultClickThroughEventTagProperties = $defaultClickThroughEventTagProperties;
310 }
311 /**
312 * @return DefaultClickThroughEventTagProperties
313 */
314 public function getDefaultClickThroughEventTagProperties()
315 {
316 return $this->defaultClickThroughEventTagProperties;
317 }
318 /**
319 * @param string
320 */
321 public function setDefaultLandingPageId($defaultLandingPageId)
322 {
323 $this->defaultLandingPageId = $defaultLandingPageId;
324 }
325 /**
326 * @return string
327 */
328 public function getDefaultLandingPageId()
329 {
330 return $this->defaultLandingPageId;
331 }
332 /**
333 * @param string
334 */
335 public function setEndDate($endDate)
336 {
337 $this->endDate = $endDate;
338 }
339 /**
340 * @return string
341 */
342 public function getEndDate()
343 {
344 return $this->endDate;
345 }
346 /**
347 * @param EventTagOverride[]
348 */
349 public function setEventTagOverrides($eventTagOverrides)
350 {
351 $this->eventTagOverrides = $eventTagOverrides;
352 }
353 /**
354 * @return EventTagOverride[]
355 */
356 public function getEventTagOverrides()
357 {
358 return $this->eventTagOverrides;
359 }
360 /**
361 * @param string
362 */
363 public function setExternalId($externalId)
364 {
365 $this->externalId = $externalId;
366 }
367 /**
368 * @return string
369 */
370 public function getExternalId()
371 {
372 return $this->externalId;
373 }
374 /**
375 * @param string
376 */
377 public function setId($id)
378 {
379 $this->id = $id;
380 }
381 /**
382 * @return string
383 */
384 public function getId()
385 {
386 return $this->id;
387 }
388 /**
389 * @param DimensionValue
390 */
391 public function setIdDimensionValue(DimensionValue $idDimensionValue)
392 {
393 $this->idDimensionValue = $idDimensionValue;
394 }
395 /**
396 * @return DimensionValue
397 */
398 public function getIdDimensionValue()
399 {
400 return $this->idDimensionValue;
401 }
402 /**
403 * @param string
404 */
405 public function setKind($kind)
406 {
407 $this->kind = $kind;
408 }
409 /**
410 * @return string
411 */
412 public function getKind()
413 {
414 return $this->kind;
415 }
416 /**
417 * @param LastModifiedInfo
418 */
419 public function setLastModifiedInfo(LastModifiedInfo $lastModifiedInfo)
420 {
421 $this->lastModifiedInfo = $lastModifiedInfo;
422 }
423 /**
424 * @return LastModifiedInfo
425 */
426 public function getLastModifiedInfo()
427 {
428 return $this->lastModifiedInfo;
429 }
430 /**
431 * @param MeasurementPartnerCampaignLink
432 */
433 public function setMeasurementPartnerLink(MeasurementPartnerCampaignLink $measurementPartnerLink)
434 {
435 $this->measurementPartnerLink = $measurementPartnerLink;
436 }
437 /**
438 * @return MeasurementPartnerCampaignLink
439 */
440 public function getMeasurementPartnerLink()
441 {
442 return $this->measurementPartnerLink;
443 }
444 /**
445 * @param string
446 */
447 public function setName($name)
448 {
449 $this->name = $name;
450 }
451 /**
452 * @return string
453 */
454 public function getName()
455 {
456 return $this->name;
457 }
458 /**
459 * @param string
460 */
461 public function setStartDate($startDate)
462 {
463 $this->startDate = $startDate;
464 }
465 /**
466 * @return string
467 */
468 public function getStartDate()
469 {
470 return $this->startDate;
471 }
472 /**
473 * @param string
474 */
475 public function setSubaccountId($subaccountId)
476 {
477 $this->subaccountId = $subaccountId;
478 }
479 /**
480 * @return string
481 */
482 public function getSubaccountId()
483 {
484 return $this->subaccountId;
485 }
486}
487
488// Adding a class alias for backwards compatibility with the previous class name.
489class_alias(Campaign::class, 'Google_Service_Dfareporting_Campaign');
Note: See TracBrowser for help on using the repository browser.