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
18class Google_Service_Dfareporting_FloodlightActivityGroup extends Google_Model
19{
20  public $accountId;
21  public $advertiserId;
22  protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
23  protected $advertiserIdDimensionValueDataType = '';
24  public $floodlightConfigurationId;
25  protected $floodlightConfigurationIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
26  protected $floodlightConfigurationIdDimensionValueDataType = '';
27  public $id;
28  protected $idDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
29  protected $idDimensionValueDataType = '';
30  public $kind;
31  public $name;
32  public $subaccountId;
33  public $tagString;
34  public $type;
35
36  public function setAccountId($accountId)
37  {
38    $this->accountId = $accountId;
39  }
40  public function getAccountId()
41  {
42    return $this->accountId;
43  }
44  public function setAdvertiserId($advertiserId)
45  {
46    $this->advertiserId = $advertiserId;
47  }
48  public function getAdvertiserId()
49  {
50    return $this->advertiserId;
51  }
52  /**
53   * @param Google_Service_Dfareporting_DimensionValue
54   */
55  public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
56  {
57    $this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
58  }
59  /**
60   * @return Google_Service_Dfareporting_DimensionValue
61   */
62  public function getAdvertiserIdDimensionValue()
63  {
64    return $this->advertiserIdDimensionValue;
65  }
66  public function setFloodlightConfigurationId($floodlightConfigurationId)
67  {
68    $this->floodlightConfigurationId = $floodlightConfigurationId;
69  }
70  public function getFloodlightConfigurationId()
71  {
72    return $this->floodlightConfigurationId;
73  }
74  /**
75   * @param Google_Service_Dfareporting_DimensionValue
76   */
77  public function setFloodlightConfigurationIdDimensionValue(Google_Service_Dfareporting_DimensionValue $floodlightConfigurationIdDimensionValue)
78  {
79    $this->floodlightConfigurationIdDimensionValue = $floodlightConfigurationIdDimensionValue;
80  }
81  /**
82   * @return Google_Service_Dfareporting_DimensionValue
83   */
84  public function getFloodlightConfigurationIdDimensionValue()
85  {
86    return $this->floodlightConfigurationIdDimensionValue;
87  }
88  public function setId($id)
89  {
90    $this->id = $id;
91  }
92  public function getId()
93  {
94    return $this->id;
95  }
96  /**
97   * @param Google_Service_Dfareporting_DimensionValue
98   */
99  public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue)
100  {
101    $this->idDimensionValue = $idDimensionValue;
102  }
103  /**
104   * @return Google_Service_Dfareporting_DimensionValue
105   */
106  public function getIdDimensionValue()
107  {
108    return $this->idDimensionValue;
109  }
110  public function setKind($kind)
111  {
112    $this->kind = $kind;
113  }
114  public function getKind()
115  {
116    return $this->kind;
117  }
118  public function setName($name)
119  {
120    $this->name = $name;
121  }
122  public function getName()
123  {
124    return $this->name;
125  }
126  public function setSubaccountId($subaccountId)
127  {
128    $this->subaccountId = $subaccountId;
129  }
130  public function getSubaccountId()
131  {
132    return $this->subaccountId;
133  }
134  public function setTagString($tagString)
135  {
136    $this->tagString = $tagString;
137  }
138  public function getTagString()
139  {
140    return $this->tagString;
141  }
142  public function setType($type)
143  {
144    $this->type = $type;
145  }
146  public function getType()
147  {
148    return $this->type;
149  }
150}
151