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_Project extends Google_Model
19{
20  public $accountId;
21  public $advertiserId;
22  public $audienceAgeGroup;
23  public $audienceGender;
24  public $budget;
25  public $clientBillingCode;
26  public $clientName;
27  public $endDate;
28  public $id;
29  public $kind;
30  protected $lastModifiedInfoType = 'Google_Service_Dfareporting_LastModifiedInfo';
31  protected $lastModifiedInfoDataType = '';
32  public $name;
33  public $overview;
34  public $startDate;
35  public $subaccountId;
36  public $targetClicks;
37  public $targetConversions;
38  public $targetCpaNanos;
39  public $targetCpcNanos;
40  public $targetCpmActiveViewNanos;
41  public $targetCpmNanos;
42  public $targetImpressions;
43
44  public function setAccountId($accountId)
45  {
46    $this->accountId = $accountId;
47  }
48  public function getAccountId()
49  {
50    return $this->accountId;
51  }
52  public function setAdvertiserId($advertiserId)
53  {
54    $this->advertiserId = $advertiserId;
55  }
56  public function getAdvertiserId()
57  {
58    return $this->advertiserId;
59  }
60  public function setAudienceAgeGroup($audienceAgeGroup)
61  {
62    $this->audienceAgeGroup = $audienceAgeGroup;
63  }
64  public function getAudienceAgeGroup()
65  {
66    return $this->audienceAgeGroup;
67  }
68  public function setAudienceGender($audienceGender)
69  {
70    $this->audienceGender = $audienceGender;
71  }
72  public function getAudienceGender()
73  {
74    return $this->audienceGender;
75  }
76  public function setBudget($budget)
77  {
78    $this->budget = $budget;
79  }
80  public function getBudget()
81  {
82    return $this->budget;
83  }
84  public function setClientBillingCode($clientBillingCode)
85  {
86    $this->clientBillingCode = $clientBillingCode;
87  }
88  public function getClientBillingCode()
89  {
90    return $this->clientBillingCode;
91  }
92  public function setClientName($clientName)
93  {
94    $this->clientName = $clientName;
95  }
96  public function getClientName()
97  {
98    return $this->clientName;
99  }
100  public function setEndDate($endDate)
101  {
102    $this->endDate = $endDate;
103  }
104  public function getEndDate()
105  {
106    return $this->endDate;
107  }
108  public function setId($id)
109  {
110    $this->id = $id;
111  }
112  public function getId()
113  {
114    return $this->id;
115  }
116  public function setKind($kind)
117  {
118    $this->kind = $kind;
119  }
120  public function getKind()
121  {
122    return $this->kind;
123  }
124  /**
125   * @param Google_Service_Dfareporting_LastModifiedInfo
126   */
127  public function setLastModifiedInfo(Google_Service_Dfareporting_LastModifiedInfo $lastModifiedInfo)
128  {
129    $this->lastModifiedInfo = $lastModifiedInfo;
130  }
131  /**
132   * @return Google_Service_Dfareporting_LastModifiedInfo
133   */
134  public function getLastModifiedInfo()
135  {
136    return $this->lastModifiedInfo;
137  }
138  public function setName($name)
139  {
140    $this->name = $name;
141  }
142  public function getName()
143  {
144    return $this->name;
145  }
146  public function setOverview($overview)
147  {
148    $this->overview = $overview;
149  }
150  public function getOverview()
151  {
152    return $this->overview;
153  }
154  public function setStartDate($startDate)
155  {
156    $this->startDate = $startDate;
157  }
158  public function getStartDate()
159  {
160    return $this->startDate;
161  }
162  public function setSubaccountId($subaccountId)
163  {
164    $this->subaccountId = $subaccountId;
165  }
166  public function getSubaccountId()
167  {
168    return $this->subaccountId;
169  }
170  public function setTargetClicks($targetClicks)
171  {
172    $this->targetClicks = $targetClicks;
173  }
174  public function getTargetClicks()
175  {
176    return $this->targetClicks;
177  }
178  public function setTargetConversions($targetConversions)
179  {
180    $this->targetConversions = $targetConversions;
181  }
182  public function getTargetConversions()
183  {
184    return $this->targetConversions;
185  }
186  public function setTargetCpaNanos($targetCpaNanos)
187  {
188    $this->targetCpaNanos = $targetCpaNanos;
189  }
190  public function getTargetCpaNanos()
191  {
192    return $this->targetCpaNanos;
193  }
194  public function setTargetCpcNanos($targetCpcNanos)
195  {
196    $this->targetCpcNanos = $targetCpcNanos;
197  }
198  public function getTargetCpcNanos()
199  {
200    return $this->targetCpcNanos;
201  }
202  public function setTargetCpmActiveViewNanos($targetCpmActiveViewNanos)
203  {
204    $this->targetCpmActiveViewNanos = $targetCpmActiveViewNanos;
205  }
206  public function getTargetCpmActiveViewNanos()
207  {
208    return $this->targetCpmActiveViewNanos;
209  }
210  public function setTargetCpmNanos($targetCpmNanos)
211  {
212    $this->targetCpmNanos = $targetCpmNanos;
213  }
214  public function getTargetCpmNanos()
215  {
216    return $this->targetCpmNanos;
217  }
218  public function setTargetImpressions($targetImpressions)
219  {
220    $this->targetImpressions = $targetImpressions;
221  }
222  public function getTargetImpressions()
223  {
224    return $this->targetImpressions;
225  }
226}
227