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 FloodlightConfiguration extends \Google\Collection
21{
22  protected $collection_key = 'userDefinedVariableConfigurations';
23  /**
24   * @var string
25   */
26  public $accountId;
27  /**
28   * @var string
29   */
30  public $advertiserId;
31  protected $advertiserIdDimensionValueType = DimensionValue::class;
32  protected $advertiserIdDimensionValueDataType = '';
33  /**
34   * @var bool
35   */
36  public $analyticsDataSharingEnabled;
37  protected $customViewabilityMetricType = CustomViewabilityMetric::class;
38  protected $customViewabilityMetricDataType = '';
39  /**
40   * @var bool
41   */
42  public $exposureToConversionEnabled;
43  /**
44   * @var string
45   */
46  public $firstDayOfWeek;
47  /**
48   * @var string
49   */
50  public $id;
51  protected $idDimensionValueType = DimensionValue::class;
52  protected $idDimensionValueDataType = '';
53  /**
54   * @var bool
55   */
56  public $inAppAttributionTrackingEnabled;
57  /**
58   * @var string
59   */
60  public $kind;
61  protected $lookbackConfigurationType = LookbackConfiguration::class;
62  protected $lookbackConfigurationDataType = '';
63  /**
64   * @var string
65   */
66  public $naturalSearchConversionAttributionOption;
67  protected $omnitureSettingsType = OmnitureSettings::class;
68  protected $omnitureSettingsDataType = '';
69  /**
70   * @var string
71   */
72  public $subaccountId;
73  protected $tagSettingsType = TagSettings::class;
74  protected $tagSettingsDataType = '';
75  protected $thirdPartyAuthenticationTokensType = ThirdPartyAuthenticationToken::class;
76  protected $thirdPartyAuthenticationTokensDataType = 'array';
77  protected $userDefinedVariableConfigurationsType = UserDefinedVariableConfiguration::class;
78  protected $userDefinedVariableConfigurationsDataType = 'array';
79
80  /**
81   * @param string
82   */
83  public function setAccountId($accountId)
84  {
85    $this->accountId = $accountId;
86  }
87  /**
88   * @return string
89   */
90  public function getAccountId()
91  {
92    return $this->accountId;
93  }
94  /**
95   * @param string
96   */
97  public function setAdvertiserId($advertiserId)
98  {
99    $this->advertiserId = $advertiserId;
100  }
101  /**
102   * @return string
103   */
104  public function getAdvertiserId()
105  {
106    return $this->advertiserId;
107  }
108  /**
109   * @param DimensionValue
110   */
111  public function setAdvertiserIdDimensionValue(DimensionValue $advertiserIdDimensionValue)
112  {
113    $this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
114  }
115  /**
116   * @return DimensionValue
117   */
118  public function getAdvertiserIdDimensionValue()
119  {
120    return $this->advertiserIdDimensionValue;
121  }
122  /**
123   * @param bool
124   */
125  public function setAnalyticsDataSharingEnabled($analyticsDataSharingEnabled)
126  {
127    $this->analyticsDataSharingEnabled = $analyticsDataSharingEnabled;
128  }
129  /**
130   * @return bool
131   */
132  public function getAnalyticsDataSharingEnabled()
133  {
134    return $this->analyticsDataSharingEnabled;
135  }
136  /**
137   * @param CustomViewabilityMetric
138   */
139  public function setCustomViewabilityMetric(CustomViewabilityMetric $customViewabilityMetric)
140  {
141    $this->customViewabilityMetric = $customViewabilityMetric;
142  }
143  /**
144   * @return CustomViewabilityMetric
145   */
146  public function getCustomViewabilityMetric()
147  {
148    return $this->customViewabilityMetric;
149  }
150  /**
151   * @param bool
152   */
153  public function setExposureToConversionEnabled($exposureToConversionEnabled)
154  {
155    $this->exposureToConversionEnabled = $exposureToConversionEnabled;
156  }
157  /**
158   * @return bool
159   */
160  public function getExposureToConversionEnabled()
161  {
162    return $this->exposureToConversionEnabled;
163  }
164  /**
165   * @param string
166   */
167  public function setFirstDayOfWeek($firstDayOfWeek)
168  {
169    $this->firstDayOfWeek = $firstDayOfWeek;
170  }
171  /**
172   * @return string
173   */
174  public function getFirstDayOfWeek()
175  {
176    return $this->firstDayOfWeek;
177  }
178  /**
179   * @param string
180   */
181  public function setId($id)
182  {
183    $this->id = $id;
184  }
185  /**
186   * @return string
187   */
188  public function getId()
189  {
190    return $this->id;
191  }
192  /**
193   * @param DimensionValue
194   */
195  public function setIdDimensionValue(DimensionValue $idDimensionValue)
196  {
197    $this->idDimensionValue = $idDimensionValue;
198  }
199  /**
200   * @return DimensionValue
201   */
202  public function getIdDimensionValue()
203  {
204    return $this->idDimensionValue;
205  }
206  /**
207   * @param bool
208   */
209  public function setInAppAttributionTrackingEnabled($inAppAttributionTrackingEnabled)
210  {
211    $this->inAppAttributionTrackingEnabled = $inAppAttributionTrackingEnabled;
212  }
213  /**
214   * @return bool
215   */
216  public function getInAppAttributionTrackingEnabled()
217  {
218    return $this->inAppAttributionTrackingEnabled;
219  }
220  /**
221   * @param string
222   */
223  public function setKind($kind)
224  {
225    $this->kind = $kind;
226  }
227  /**
228   * @return string
229   */
230  public function getKind()
231  {
232    return $this->kind;
233  }
234  /**
235   * @param LookbackConfiguration
236   */
237  public function setLookbackConfiguration(LookbackConfiguration $lookbackConfiguration)
238  {
239    $this->lookbackConfiguration = $lookbackConfiguration;
240  }
241  /**
242   * @return LookbackConfiguration
243   */
244  public function getLookbackConfiguration()
245  {
246    return $this->lookbackConfiguration;
247  }
248  /**
249   * @param string
250   */
251  public function setNaturalSearchConversionAttributionOption($naturalSearchConversionAttributionOption)
252  {
253    $this->naturalSearchConversionAttributionOption = $naturalSearchConversionAttributionOption;
254  }
255  /**
256   * @return string
257   */
258  public function getNaturalSearchConversionAttributionOption()
259  {
260    return $this->naturalSearchConversionAttributionOption;
261  }
262  /**
263   * @param OmnitureSettings
264   */
265  public function setOmnitureSettings(OmnitureSettings $omnitureSettings)
266  {
267    $this->omnitureSettings = $omnitureSettings;
268  }
269  /**
270   * @return OmnitureSettings
271   */
272  public function getOmnitureSettings()
273  {
274    return $this->omnitureSettings;
275  }
276  /**
277   * @param string
278   */
279  public function setSubaccountId($subaccountId)
280  {
281    $this->subaccountId = $subaccountId;
282  }
283  /**
284   * @return string
285   */
286  public function getSubaccountId()
287  {
288    return $this->subaccountId;
289  }
290  /**
291   * @param TagSettings
292   */
293  public function setTagSettings(TagSettings $tagSettings)
294  {
295    $this->tagSettings = $tagSettings;
296  }
297  /**
298   * @return TagSettings
299   */
300  public function getTagSettings()
301  {
302    return $this->tagSettings;
303  }
304  /**
305   * @param ThirdPartyAuthenticationToken[]
306   */
307  public function setThirdPartyAuthenticationTokens($thirdPartyAuthenticationTokens)
308  {
309    $this->thirdPartyAuthenticationTokens = $thirdPartyAuthenticationTokens;
310  }
311  /**
312   * @return ThirdPartyAuthenticationToken[]
313   */
314  public function getThirdPartyAuthenticationTokens()
315  {
316    return $this->thirdPartyAuthenticationTokens;
317  }
318  /**
319   * @param UserDefinedVariableConfiguration[]
320   */
321  public function setUserDefinedVariableConfigurations($userDefinedVariableConfigurations)
322  {
323    $this->userDefinedVariableConfigurations = $userDefinedVariableConfigurations;
324  }
325  /**
326   * @return UserDefinedVariableConfiguration[]
327   */
328  public function getUserDefinedVariableConfigurations()
329  {
330    return $this->userDefinedVariableConfigurations;
331  }
332}
333
334// Adding a class alias for backwards compatibility with the previous class name.
335class_alias(FloodlightConfiguration::class, 'Google_Service_Dfareporting_FloodlightConfiguration');
336