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_TargetableRemarketingList 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  public $listSize;
30  public $listSource;
31  public $name;
32  public $subaccountId;
33
34  public function setAccountId($accountId)
35  {
36    $this->accountId = $accountId;
37  }
38  public function getAccountId()
39  {
40    return $this->accountId;
41  }
42  public function setActive($active)
43  {
44    $this->active = $active;
45  }
46  public function getActive()
47  {
48    return $this->active;
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 setDescription($description)
73  {
74    $this->description = $description;
75  }
76  public function getDescription()
77  {
78    return $this->description;
79  }
80  public function setId($id)
81  {
82    $this->id = $id;
83  }
84  public function getId()
85  {
86    return $this->id;
87  }
88  public function setKind($kind)
89  {
90    $this->kind = $kind;
91  }
92  public function getKind()
93  {
94    return $this->kind;
95  }
96  public function setLifeSpan($lifeSpan)
97  {
98    $this->lifeSpan = $lifeSpan;
99  }
100  public function getLifeSpan()
101  {
102    return $this->lifeSpan;
103  }
104  public function setListSize($listSize)
105  {
106    $this->listSize = $listSize;
107  }
108  public function getListSize()
109  {
110    return $this->listSize;
111  }
112  public function setListSource($listSource)
113  {
114    $this->listSource = $listSource;
115  }
116  public function getListSource()
117  {
118    return $this->listSource;
119  }
120  public function setName($name)
121  {
122    $this->name = $name;
123  }
124  public function getName()
125  {
126    return $this->name;
127  }
128  public function setSubaccountId($subaccountId)
129  {
130    $this->subaccountId = $subaccountId;
131  }
132  public function getSubaccountId()
133  {
134    return $this->subaccountId;
135  }
136}
137