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_EventTag extends Google_Collection
19{
20  protected $collection_key = 'siteIds';
21  public $accountId;
22  public $advertiserId;
23  protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
24  protected $advertiserIdDimensionValueDataType = '';
25  public $campaignId;
26  protected $campaignIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
27  protected $campaignIdDimensionValueDataType = '';
28  public $enabledByDefault;
29  public $excludeFromAdxRequests;
30  public $id;
31  public $kind;
32  public $name;
33  public $siteFilterType;
34  public $siteIds;
35  public $sslCompliant;
36  public $status;
37  public $subaccountId;
38  public $type;
39  public $url;
40  public $urlEscapeLevels;
41
42  public function setAccountId($accountId)
43  {
44    $this->accountId = $accountId;
45  }
46  public function getAccountId()
47  {
48    return $this->accountId;
49  }
50  public function setAdvertiserId($advertiserId)
51  {
52    $this->advertiserId = $advertiserId;
53  }
54  public function getAdvertiserId()
55  {
56    return $this->advertiserId;
57  }
58  /**
59   * @param Google_Service_Dfareporting_DimensionValue
60   */
61  public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
62  {
63    $this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
64  }
65  /**
66   * @return Google_Service_Dfareporting_DimensionValue
67   */
68  public function getAdvertiserIdDimensionValue()
69  {
70    return $this->advertiserIdDimensionValue;
71  }
72  public function setCampaignId($campaignId)
73  {
74    $this->campaignId = $campaignId;
75  }
76  public function getCampaignId()
77  {
78    return $this->campaignId;
79  }
80  /**
81   * @param Google_Service_Dfareporting_DimensionValue
82   */
83  public function setCampaignIdDimensionValue(Google_Service_Dfareporting_DimensionValue $campaignIdDimensionValue)
84  {
85    $this->campaignIdDimensionValue = $campaignIdDimensionValue;
86  }
87  /**
88   * @return Google_Service_Dfareporting_DimensionValue
89   */
90  public function getCampaignIdDimensionValue()
91  {
92    return $this->campaignIdDimensionValue;
93  }
94  public function setEnabledByDefault($enabledByDefault)
95  {
96    $this->enabledByDefault = $enabledByDefault;
97  }
98  public function getEnabledByDefault()
99  {
100    return $this->enabledByDefault;
101  }
102  public function setExcludeFromAdxRequests($excludeFromAdxRequests)
103  {
104    $this->excludeFromAdxRequests = $excludeFromAdxRequests;
105  }
106  public function getExcludeFromAdxRequests()
107  {
108    return $this->excludeFromAdxRequests;
109  }
110  public function setId($id)
111  {
112    $this->id = $id;
113  }
114  public function getId()
115  {
116    return $this->id;
117  }
118  public function setKind($kind)
119  {
120    $this->kind = $kind;
121  }
122  public function getKind()
123  {
124    return $this->kind;
125  }
126  public function setName($name)
127  {
128    $this->name = $name;
129  }
130  public function getName()
131  {
132    return $this->name;
133  }
134  public function setSiteFilterType($siteFilterType)
135  {
136    $this->siteFilterType = $siteFilterType;
137  }
138  public function getSiteFilterType()
139  {
140    return $this->siteFilterType;
141  }
142  public function setSiteIds($siteIds)
143  {
144    $this->siteIds = $siteIds;
145  }
146  public function getSiteIds()
147  {
148    return $this->siteIds;
149  }
150  public function setSslCompliant($sslCompliant)
151  {
152    $this->sslCompliant = $sslCompliant;
153  }
154  public function getSslCompliant()
155  {
156    return $this->sslCompliant;
157  }
158  public function setStatus($status)
159  {
160    $this->status = $status;
161  }
162  public function getStatus()
163  {
164    return $this->status;
165  }
166  public function setSubaccountId($subaccountId)
167  {
168    $this->subaccountId = $subaccountId;
169  }
170  public function getSubaccountId()
171  {
172    return $this->subaccountId;
173  }
174  public function setType($type)
175  {
176    $this->type = $type;
177  }
178  public function getType()
179  {
180    return $this->type;
181  }
182  public function setUrl($url)
183  {
184    $this->url = $url;
185  }
186  public function getUrl()
187  {
188    return $this->url;
189  }
190  public function setUrlEscapeLevels($urlEscapeLevels)
191  {
192    $this->urlEscapeLevels = $urlEscapeLevels;
193  }
194  public function getUrlEscapeLevels()
195  {
196    return $this->urlEscapeLevels;
197  }
198}
199