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_RemarketingList extends Google_Model
19{
20  public $accountId;
21  public $active;
22  public $advertiserId;
23  protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
24  protected $advertiserIdDimensionValueDataType = '';
25  public $description;
26  public $id;
27  public $kind;
28  public $lifeSpan;
29  protected $listPopulationRuleType = 'Google_Service_Dfareporting_ListPopulationRule';
30  protected $listPopulationRuleDataType = '';
31  public $listSize;
32  public $listSource;
33  public $name;
34  public $subaccountId;
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 setActive($active)
45  {
46    $this->active = $active;
47  }
48  public function getActive()
49  {
50    return $this->active;
51  }
52  public function setAdvertiserId($advertiserId)
53  {
54    $this->advertiserId = $advertiserId;
55  }
56  public function getAdvertiserId()
57  {
58    return $this->advertiserId;
59  }
60  /**
61   * @param Google_Service_Dfareporting_DimensionValue
62   */
63  public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
64  {
65    $this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
66  }
67  /**
68   * @return Google_Service_Dfareporting_DimensionValue
69   */
70  public function getAdvertiserIdDimensionValue()
71  {
72    return $this->advertiserIdDimensionValue;
73  }
74  public function setDescription($description)
75  {
76    $this->description = $description;
77  }
78  public function getDescription()
79  {
80    return $this->description;
81  }
82  public function setId($id)
83  {
84    $this->id = $id;
85  }
86  public function getId()
87  {
88    return $this->id;
89  }
90  public function setKind($kind)
91  {
92    $this->kind = $kind;
93  }
94  public function getKind()
95  {
96    return $this->kind;
97  }
98  public function setLifeSpan($lifeSpan)
99  {
100    $this->lifeSpan = $lifeSpan;
101  }
102  public function getLifeSpan()
103  {
104    return $this->lifeSpan;
105  }
106  /**
107   * @param Google_Service_Dfareporting_ListPopulationRule
108   */
109  public function setListPopulationRule(Google_Service_Dfareporting_ListPopulationRule $listPopulationRule)
110  {
111    $this->listPopulationRule = $listPopulationRule;
112  }
113  /**
114   * @return Google_Service_Dfareporting_ListPopulationRule
115   */
116  public function getListPopulationRule()
117  {
118    return $this->listPopulationRule;
119  }
120  public function setListSize($listSize)
121  {
122    $this->listSize = $listSize;
123  }
124  public function getListSize()
125  {
126    return $this->listSize;
127  }
128  public function setListSource($listSource)
129  {
130    $this->listSource = $listSource;
131  }
132  public function getListSource()
133  {
134    return $this->listSource;
135  }
136  public function setName($name)
137  {
138    $this->name = $name;
139  }
140  public function getName()
141  {
142    return $this->name;
143  }
144  public function setSubaccountId($subaccountId)
145  {
146    $this->subaccountId = $subaccountId;
147  }
148  public function getSubaccountId()
149  {
150    return $this->subaccountId;
151  }
152}
153