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 FloodlightActivityGroup extends \Google\Model
21{
22  /**
23   * @var string
24   */
25  public $accountId;
26  /**
27   * @var string
28   */
29  public $advertiserId;
30  protected $advertiserIdDimensionValueType = DimensionValue::class;
31  protected $advertiserIdDimensionValueDataType = '';
32  /**
33   * @var string
34   */
35  public $floodlightConfigurationId;
36  protected $floodlightConfigurationIdDimensionValueType = DimensionValue::class;
37  protected $floodlightConfigurationIdDimensionValueDataType = '';
38  /**
39   * @var string
40   */
41  public $id;
42  protected $idDimensionValueType = DimensionValue::class;
43  protected $idDimensionValueDataType = '';
44  /**
45   * @var string
46   */
47  public $kind;
48  /**
49   * @var string
50   */
51  public $name;
52  /**
53   * @var string
54   */
55  public $subaccountId;
56  /**
57   * @var string
58   */
59  public $tagString;
60  /**
61   * @var string
62   */
63  public $type;
64
65  /**
66   * @param string
67   */
68  public function setAccountId($accountId)
69  {
70    $this->accountId = $accountId;
71  }
72  /**
73   * @return string
74   */
75  public function getAccountId()
76  {
77    return $this->accountId;
78  }
79  /**
80   * @param string
81   */
82  public function setAdvertiserId($advertiserId)
83  {
84    $this->advertiserId = $advertiserId;
85  }
86  /**
87   * @return string
88   */
89  public function getAdvertiserId()
90  {
91    return $this->advertiserId;
92  }
93  /**
94   * @param DimensionValue
95   */
96  public function setAdvertiserIdDimensionValue(DimensionValue $advertiserIdDimensionValue)
97  {
98    $this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
99  }
100  /**
101   * @return DimensionValue
102   */
103  public function getAdvertiserIdDimensionValue()
104  {
105    return $this->advertiserIdDimensionValue;
106  }
107  /**
108   * @param string
109   */
110  public function setFloodlightConfigurationId($floodlightConfigurationId)
111  {
112    $this->floodlightConfigurationId = $floodlightConfigurationId;
113  }
114  /**
115   * @return string
116   */
117  public function getFloodlightConfigurationId()
118  {
119    return $this->floodlightConfigurationId;
120  }
121  /**
122   * @param DimensionValue
123   */
124  public function setFloodlightConfigurationIdDimensionValue(DimensionValue $floodlightConfigurationIdDimensionValue)
125  {
126    $this->floodlightConfigurationIdDimensionValue = $floodlightConfigurationIdDimensionValue;
127  }
128  /**
129   * @return DimensionValue
130   */
131  public function getFloodlightConfigurationIdDimensionValue()
132  {
133    return $this->floodlightConfigurationIdDimensionValue;
134  }
135  /**
136   * @param string
137   */
138  public function setId($id)
139  {
140    $this->id = $id;
141  }
142  /**
143   * @return string
144   */
145  public function getId()
146  {
147    return $this->id;
148  }
149  /**
150   * @param DimensionValue
151   */
152  public function setIdDimensionValue(DimensionValue $idDimensionValue)
153  {
154    $this->idDimensionValue = $idDimensionValue;
155  }
156  /**
157   * @return DimensionValue
158   */
159  public function getIdDimensionValue()
160  {
161    return $this->idDimensionValue;
162  }
163  /**
164   * @param string
165   */
166  public function setKind($kind)
167  {
168    $this->kind = $kind;
169  }
170  /**
171   * @return string
172   */
173  public function getKind()
174  {
175    return $this->kind;
176  }
177  /**
178   * @param string
179   */
180  public function setName($name)
181  {
182    $this->name = $name;
183  }
184  /**
185   * @return string
186   */
187  public function getName()
188  {
189    return $this->name;
190  }
191  /**
192   * @param string
193   */
194  public function setSubaccountId($subaccountId)
195  {
196    $this->subaccountId = $subaccountId;
197  }
198  /**
199   * @return string
200   */
201  public function getSubaccountId()
202  {
203    return $this->subaccountId;
204  }
205  /**
206   * @param string
207   */
208  public function setTagString($tagString)
209  {
210    $this->tagString = $tagString;
211  }
212  /**
213   * @return string
214   */
215  public function getTagString()
216  {
217    return $this->tagString;
218  }
219  /**
220   * @param string
221   */
222  public function setType($type)
223  {
224    $this->type = $type;
225  }
226  /**
227   * @return string
228   */
229  public function getType()
230  {
231    return $this->type;
232  }
233}
234
235// Adding a class alias for backwards compatibility with the previous class name.
236class_alias(FloodlightActivityGroup::class, 'Google_Service_Dfareporting_FloodlightActivityGroup');
237