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 |
|
---|
18 | namespace Google\Service\Dfareporting;
|
---|
19 |
|
---|
20 | class Report extends \Google\Model
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * @var string
|
---|
24 | */
|
---|
25 | public $accountId;
|
---|
26 | protected $criteriaType = ReportCriteria::class;
|
---|
27 | protected $criteriaDataType = '';
|
---|
28 | protected $crossDimensionReachCriteriaType = ReportCrossDimensionReachCriteria::class;
|
---|
29 | protected $crossDimensionReachCriteriaDataType = '';
|
---|
30 | protected $crossMediaReachCriteriaType = ReportCrossMediaReachCriteria::class;
|
---|
31 | protected $crossMediaReachCriteriaDataType = '';
|
---|
32 | protected $deliveryType = ReportDelivery::class;
|
---|
33 | protected $deliveryDataType = '';
|
---|
34 | /**
|
---|
35 | * @var string
|
---|
36 | */
|
---|
37 | public $etag;
|
---|
38 | /**
|
---|
39 | * @var string
|
---|
40 | */
|
---|
41 | public $fileName;
|
---|
42 | protected $floodlightCriteriaType = ReportFloodlightCriteria::class;
|
---|
43 | protected $floodlightCriteriaDataType = '';
|
---|
44 | /**
|
---|
45 | * @var string
|
---|
46 | */
|
---|
47 | public $format;
|
---|
48 | /**
|
---|
49 | * @var string
|
---|
50 | */
|
---|
51 | public $id;
|
---|
52 | /**
|
---|
53 | * @var string
|
---|
54 | */
|
---|
55 | public $kind;
|
---|
56 | /**
|
---|
57 | * @var string
|
---|
58 | */
|
---|
59 | public $lastModifiedTime;
|
---|
60 | /**
|
---|
61 | * @var string
|
---|
62 | */
|
---|
63 | public $name;
|
---|
64 | /**
|
---|
65 | * @var string
|
---|
66 | */
|
---|
67 | public $ownerProfileId;
|
---|
68 | protected $pathToConversionCriteriaType = ReportPathToConversionCriteria::class;
|
---|
69 | protected $pathToConversionCriteriaDataType = '';
|
---|
70 | protected $reachCriteriaType = ReportReachCriteria::class;
|
---|
71 | protected $reachCriteriaDataType = '';
|
---|
72 | protected $scheduleType = ReportSchedule::class;
|
---|
73 | protected $scheduleDataType = '';
|
---|
74 | /**
|
---|
75 | * @var string
|
---|
76 | */
|
---|
77 | public $subAccountId;
|
---|
78 | /**
|
---|
79 | * @var string
|
---|
80 | */
|
---|
81 | public $type;
|
---|
82 |
|
---|
83 | /**
|
---|
84 | * @param string
|
---|
85 | */
|
---|
86 | public function setAccountId($accountId)
|
---|
87 | {
|
---|
88 | $this->accountId = $accountId;
|
---|
89 | }
|
---|
90 | /**
|
---|
91 | * @return string
|
---|
92 | */
|
---|
93 | public function getAccountId()
|
---|
94 | {
|
---|
95 | return $this->accountId;
|
---|
96 | }
|
---|
97 | /**
|
---|
98 | * @param ReportCriteria
|
---|
99 | */
|
---|
100 | public function setCriteria(ReportCriteria $criteria)
|
---|
101 | {
|
---|
102 | $this->criteria = $criteria;
|
---|
103 | }
|
---|
104 | /**
|
---|
105 | * @return ReportCriteria
|
---|
106 | */
|
---|
107 | public function getCriteria()
|
---|
108 | {
|
---|
109 | return $this->criteria;
|
---|
110 | }
|
---|
111 | /**
|
---|
112 | * @param ReportCrossDimensionReachCriteria
|
---|
113 | */
|
---|
114 | public function setCrossDimensionReachCriteria(ReportCrossDimensionReachCriteria $crossDimensionReachCriteria)
|
---|
115 | {
|
---|
116 | $this->crossDimensionReachCriteria = $crossDimensionReachCriteria;
|
---|
117 | }
|
---|
118 | /**
|
---|
119 | * @return ReportCrossDimensionReachCriteria
|
---|
120 | */
|
---|
121 | public function getCrossDimensionReachCriteria()
|
---|
122 | {
|
---|
123 | return $this->crossDimensionReachCriteria;
|
---|
124 | }
|
---|
125 | /**
|
---|
126 | * @param ReportCrossMediaReachCriteria
|
---|
127 | */
|
---|
128 | public function setCrossMediaReachCriteria(ReportCrossMediaReachCriteria $crossMediaReachCriteria)
|
---|
129 | {
|
---|
130 | $this->crossMediaReachCriteria = $crossMediaReachCriteria;
|
---|
131 | }
|
---|
132 | /**
|
---|
133 | * @return ReportCrossMediaReachCriteria
|
---|
134 | */
|
---|
135 | public function getCrossMediaReachCriteria()
|
---|
136 | {
|
---|
137 | return $this->crossMediaReachCriteria;
|
---|
138 | }
|
---|
139 | /**
|
---|
140 | * @param ReportDelivery
|
---|
141 | */
|
---|
142 | public function setDelivery(ReportDelivery $delivery)
|
---|
143 | {
|
---|
144 | $this->delivery = $delivery;
|
---|
145 | }
|
---|
146 | /**
|
---|
147 | * @return ReportDelivery
|
---|
148 | */
|
---|
149 | public function getDelivery()
|
---|
150 | {
|
---|
151 | return $this->delivery;
|
---|
152 | }
|
---|
153 | /**
|
---|
154 | * @param string
|
---|
155 | */
|
---|
156 | public function setEtag($etag)
|
---|
157 | {
|
---|
158 | $this->etag = $etag;
|
---|
159 | }
|
---|
160 | /**
|
---|
161 | * @return string
|
---|
162 | */
|
---|
163 | public function getEtag()
|
---|
164 | {
|
---|
165 | return $this->etag;
|
---|
166 | }
|
---|
167 | /**
|
---|
168 | * @param string
|
---|
169 | */
|
---|
170 | public function setFileName($fileName)
|
---|
171 | {
|
---|
172 | $this->fileName = $fileName;
|
---|
173 | }
|
---|
174 | /**
|
---|
175 | * @return string
|
---|
176 | */
|
---|
177 | public function getFileName()
|
---|
178 | {
|
---|
179 | return $this->fileName;
|
---|
180 | }
|
---|
181 | /**
|
---|
182 | * @param ReportFloodlightCriteria
|
---|
183 | */
|
---|
184 | public function setFloodlightCriteria(ReportFloodlightCriteria $floodlightCriteria)
|
---|
185 | {
|
---|
186 | $this->floodlightCriteria = $floodlightCriteria;
|
---|
187 | }
|
---|
188 | /**
|
---|
189 | * @return ReportFloodlightCriteria
|
---|
190 | */
|
---|
191 | public function getFloodlightCriteria()
|
---|
192 | {
|
---|
193 | return $this->floodlightCriteria;
|
---|
194 | }
|
---|
195 | /**
|
---|
196 | * @param string
|
---|
197 | */
|
---|
198 | public function setFormat($format)
|
---|
199 | {
|
---|
200 | $this->format = $format;
|
---|
201 | }
|
---|
202 | /**
|
---|
203 | * @return string
|
---|
204 | */
|
---|
205 | public function getFormat()
|
---|
206 | {
|
---|
207 | return $this->format;
|
---|
208 | }
|
---|
209 | /**
|
---|
210 | * @param string
|
---|
211 | */
|
---|
212 | public function setId($id)
|
---|
213 | {
|
---|
214 | $this->id = $id;
|
---|
215 | }
|
---|
216 | /**
|
---|
217 | * @return string
|
---|
218 | */
|
---|
219 | public function getId()
|
---|
220 | {
|
---|
221 | return $this->id;
|
---|
222 | }
|
---|
223 | /**
|
---|
224 | * @param string
|
---|
225 | */
|
---|
226 | public function setKind($kind)
|
---|
227 | {
|
---|
228 | $this->kind = $kind;
|
---|
229 | }
|
---|
230 | /**
|
---|
231 | * @return string
|
---|
232 | */
|
---|
233 | public function getKind()
|
---|
234 | {
|
---|
235 | return $this->kind;
|
---|
236 | }
|
---|
237 | /**
|
---|
238 | * @param string
|
---|
239 | */
|
---|
240 | public function setLastModifiedTime($lastModifiedTime)
|
---|
241 | {
|
---|
242 | $this->lastModifiedTime = $lastModifiedTime;
|
---|
243 | }
|
---|
244 | /**
|
---|
245 | * @return string
|
---|
246 | */
|
---|
247 | public function getLastModifiedTime()
|
---|
248 | {
|
---|
249 | return $this->lastModifiedTime;
|
---|
250 | }
|
---|
251 | /**
|
---|
252 | * @param string
|
---|
253 | */
|
---|
254 | public function setName($name)
|
---|
255 | {
|
---|
256 | $this->name = $name;
|
---|
257 | }
|
---|
258 | /**
|
---|
259 | * @return string
|
---|
260 | */
|
---|
261 | public function getName()
|
---|
262 | {
|
---|
263 | return $this->name;
|
---|
264 | }
|
---|
265 | /**
|
---|
266 | * @param string
|
---|
267 | */
|
---|
268 | public function setOwnerProfileId($ownerProfileId)
|
---|
269 | {
|
---|
270 | $this->ownerProfileId = $ownerProfileId;
|
---|
271 | }
|
---|
272 | /**
|
---|
273 | * @return string
|
---|
274 | */
|
---|
275 | public function getOwnerProfileId()
|
---|
276 | {
|
---|
277 | return $this->ownerProfileId;
|
---|
278 | }
|
---|
279 | /**
|
---|
280 | * @param ReportPathToConversionCriteria
|
---|
281 | */
|
---|
282 | public function setPathToConversionCriteria(ReportPathToConversionCriteria $pathToConversionCriteria)
|
---|
283 | {
|
---|
284 | $this->pathToConversionCriteria = $pathToConversionCriteria;
|
---|
285 | }
|
---|
286 | /**
|
---|
287 | * @return ReportPathToConversionCriteria
|
---|
288 | */
|
---|
289 | public function getPathToConversionCriteria()
|
---|
290 | {
|
---|
291 | return $this->pathToConversionCriteria;
|
---|
292 | }
|
---|
293 | /**
|
---|
294 | * @param ReportReachCriteria
|
---|
295 | */
|
---|
296 | public function setReachCriteria(ReportReachCriteria $reachCriteria)
|
---|
297 | {
|
---|
298 | $this->reachCriteria = $reachCriteria;
|
---|
299 | }
|
---|
300 | /**
|
---|
301 | * @return ReportReachCriteria
|
---|
302 | */
|
---|
303 | public function getReachCriteria()
|
---|
304 | {
|
---|
305 | return $this->reachCriteria;
|
---|
306 | }
|
---|
307 | /**
|
---|
308 | * @param ReportSchedule
|
---|
309 | */
|
---|
310 | public function setSchedule(ReportSchedule $schedule)
|
---|
311 | {
|
---|
312 | $this->schedule = $schedule;
|
---|
313 | }
|
---|
314 | /**
|
---|
315 | * @return ReportSchedule
|
---|
316 | */
|
---|
317 | public function getSchedule()
|
---|
318 | {
|
---|
319 | return $this->schedule;
|
---|
320 | }
|
---|
321 | /**
|
---|
322 | * @param string
|
---|
323 | */
|
---|
324 | public function setSubAccountId($subAccountId)
|
---|
325 | {
|
---|
326 | $this->subAccountId = $subAccountId;
|
---|
327 | }
|
---|
328 | /**
|
---|
329 | * @return string
|
---|
330 | */
|
---|
331 | public function getSubAccountId()
|
---|
332 | {
|
---|
333 | return $this->subAccountId;
|
---|
334 | }
|
---|
335 | /**
|
---|
336 | * @param string
|
---|
337 | */
|
---|
338 | public function setType($type)
|
---|
339 | {
|
---|
340 | $this->type = $type;
|
---|
341 | }
|
---|
342 | /**
|
---|
343 | * @return string
|
---|
344 | */
|
---|
345 | public function getType()
|
---|
346 | {
|
---|
347 | return $this->type;
|
---|
348 | }
|
---|
349 | }
|
---|
350 |
|
---|
351 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
352 | class_alias(Report::class, 'Google_Service_Dfareporting_Report');
|
---|