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
18namespace Google\Service\Analytics;
19
20class UnsampledReport extends \Google\Model
21{
22  protected $internal_gapi_mappings = [
23        "endDate" => "end-date",
24        "startDate" => "start-date",
25  ];
26  /**
27   * @var string
28   */
29  public $accountId;
30  protected $cloudStorageDownloadDetailsType = UnsampledReportCloudStorageDownloadDetails::class;
31  protected $cloudStorageDownloadDetailsDataType = '';
32  /**
33   * @var string
34   */
35  public $created;
36  /**
37   * @var string
38   */
39  public $dimensions;
40  /**
41   * @var string
42   */
43  public $downloadType;
44  protected $driveDownloadDetailsType = UnsampledReportDriveDownloadDetails::class;
45  protected $driveDownloadDetailsDataType = '';
46  /**
47   * @var string
48   */
49  public $endDate;
50  /**
51   * @var string
52   */
53  public $filters;
54  /**
55   * @var string
56   */
57  public $id;
58  /**
59   * @var string
60   */
61  public $kind;
62  /**
63   * @var string
64   */
65  public $metrics;
66  /**
67   * @var string
68   */
69  public $profileId;
70  /**
71   * @var string
72   */
73  public $segment;
74  /**
75   * @var string
76   */
77  public $selfLink;
78  /**
79   * @var string
80   */
81  public $startDate;
82  /**
83   * @var string
84   */
85  public $status;
86  /**
87   * @var string
88   */
89  public $title;
90  /**
91   * @var string
92   */
93  public $updated;
94  /**
95   * @var string
96   */
97  public $webPropertyId;
98
99  /**
100   * @param string
101   */
102  public function setAccountId($accountId)
103  {
104    $this->accountId = $accountId;
105  }
106  /**
107   * @return string
108   */
109  public function getAccountId()
110  {
111    return $this->accountId;
112  }
113  /**
114   * @param UnsampledReportCloudStorageDownloadDetails
115   */
116  public function setCloudStorageDownloadDetails(UnsampledReportCloudStorageDownloadDetails $cloudStorageDownloadDetails)
117  {
118    $this->cloudStorageDownloadDetails = $cloudStorageDownloadDetails;
119  }
120  /**
121   * @return UnsampledReportCloudStorageDownloadDetails
122   */
123  public function getCloudStorageDownloadDetails()
124  {
125    return $this->cloudStorageDownloadDetails;
126  }
127  /**
128   * @param string
129   */
130  public function setCreated($created)
131  {
132    $this->created = $created;
133  }
134  /**
135   * @return string
136   */
137  public function getCreated()
138  {
139    return $this->created;
140  }
141  /**
142   * @param string
143   */
144  public function setDimensions($dimensions)
145  {
146    $this->dimensions = $dimensions;
147  }
148  /**
149   * @return string
150   */
151  public function getDimensions()
152  {
153    return $this->dimensions;
154  }
155  /**
156   * @param string
157   */
158  public function setDownloadType($downloadType)
159  {
160    $this->downloadType = $downloadType;
161  }
162  /**
163   * @return string
164   */
165  public function getDownloadType()
166  {
167    return $this->downloadType;
168  }
169  /**
170   * @param UnsampledReportDriveDownloadDetails
171   */
172  public function setDriveDownloadDetails(UnsampledReportDriveDownloadDetails $driveDownloadDetails)
173  {
174    $this->driveDownloadDetails = $driveDownloadDetails;
175  }
176  /**
177   * @return UnsampledReportDriveDownloadDetails
178   */
179  public function getDriveDownloadDetails()
180  {
181    return $this->driveDownloadDetails;
182  }
183  /**
184   * @param string
185   */
186  public function setEndDate($endDate)
187  {
188    $this->endDate = $endDate;
189  }
190  /**
191   * @return string
192   */
193  public function getEndDate()
194  {
195    return $this->endDate;
196  }
197  /**
198   * @param string
199   */
200  public function setFilters($filters)
201  {
202    $this->filters = $filters;
203  }
204  /**
205   * @return string
206   */
207  public function getFilters()
208  {
209    return $this->filters;
210  }
211  /**
212   * @param string
213   */
214  public function setId($id)
215  {
216    $this->id = $id;
217  }
218  /**
219   * @return string
220   */
221  public function getId()
222  {
223    return $this->id;
224  }
225  /**
226   * @param string
227   */
228  public function setKind($kind)
229  {
230    $this->kind = $kind;
231  }
232  /**
233   * @return string
234   */
235  public function getKind()
236  {
237    return $this->kind;
238  }
239  /**
240   * @param string
241   */
242  public function setMetrics($metrics)
243  {
244    $this->metrics = $metrics;
245  }
246  /**
247   * @return string
248   */
249  public function getMetrics()
250  {
251    return $this->metrics;
252  }
253  /**
254   * @param string
255   */
256  public function setProfileId($profileId)
257  {
258    $this->profileId = $profileId;
259  }
260  /**
261   * @return string
262   */
263  public function getProfileId()
264  {
265    return $this->profileId;
266  }
267  /**
268   * @param string
269   */
270  public function setSegment($segment)
271  {
272    $this->segment = $segment;
273  }
274  /**
275   * @return string
276   */
277  public function getSegment()
278  {
279    return $this->segment;
280  }
281  /**
282   * @param string
283   */
284  public function setSelfLink($selfLink)
285  {
286    $this->selfLink = $selfLink;
287  }
288  /**
289   * @return string
290   */
291  public function getSelfLink()
292  {
293    return $this->selfLink;
294  }
295  /**
296   * @param string
297   */
298  public function setStartDate($startDate)
299  {
300    $this->startDate = $startDate;
301  }
302  /**
303   * @return string
304   */
305  public function getStartDate()
306  {
307    return $this->startDate;
308  }
309  /**
310   * @param string
311   */
312  public function setStatus($status)
313  {
314    $this->status = $status;
315  }
316  /**
317   * @return string
318   */
319  public function getStatus()
320  {
321    return $this->status;
322  }
323  /**
324   * @param string
325   */
326  public function setTitle($title)
327  {
328    $this->title = $title;
329  }
330  /**
331   * @return string
332   */
333  public function getTitle()
334  {
335    return $this->title;
336  }
337  /**
338   * @param string
339   */
340  public function setUpdated($updated)
341  {
342    $this->updated = $updated;
343  }
344  /**
345   * @return string
346   */
347  public function getUpdated()
348  {
349    return $this->updated;
350  }
351  /**
352   * @param string
353   */
354  public function setWebPropertyId($webPropertyId)
355  {
356    $this->webPropertyId = $webPropertyId;
357  }
358  /**
359   * @return string
360   */
361  public function getWebPropertyId()
362  {
363    return $this->webPropertyId;
364  }
365}
366
367// Adding a class alias for backwards compatibility with the previous class name.
368class_alias(UnsampledReport::class, 'Google_Service_Analytics_UnsampledReport');
369