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_DoubleClickBidManager_QueryMetadata extends Google_Collection
19{
20  protected $collection_key = 'shareEmailAddress';
21  public $dataRange;
22  public $format;
23  public $googleCloudStoragePathForLatestReport;
24  public $googleDrivePathForLatestReport;
25  public $latestReportRunTimeMs;
26  public $locale;
27  public $reportCount;
28  public $running;
29  public $sendNotification;
30  public $shareEmailAddress;
31  public $title;
32
33  public function setDataRange($dataRange)
34  {
35    $this->dataRange = $dataRange;
36  }
37  public function getDataRange()
38  {
39    return $this->dataRange;
40  }
41  public function setFormat($format)
42  {
43    $this->format = $format;
44  }
45  public function getFormat()
46  {
47    return $this->format;
48  }
49  public function setGoogleCloudStoragePathForLatestReport($googleCloudStoragePathForLatestReport)
50  {
51    $this->googleCloudStoragePathForLatestReport = $googleCloudStoragePathForLatestReport;
52  }
53  public function getGoogleCloudStoragePathForLatestReport()
54  {
55    return $this->googleCloudStoragePathForLatestReport;
56  }
57  public function setGoogleDrivePathForLatestReport($googleDrivePathForLatestReport)
58  {
59    $this->googleDrivePathForLatestReport = $googleDrivePathForLatestReport;
60  }
61  public function getGoogleDrivePathForLatestReport()
62  {
63    return $this->googleDrivePathForLatestReport;
64  }
65  public function setLatestReportRunTimeMs($latestReportRunTimeMs)
66  {
67    $this->latestReportRunTimeMs = $latestReportRunTimeMs;
68  }
69  public function getLatestReportRunTimeMs()
70  {
71    return $this->latestReportRunTimeMs;
72  }
73  public function setLocale($locale)
74  {
75    $this->locale = $locale;
76  }
77  public function getLocale()
78  {
79    return $this->locale;
80  }
81  public function setReportCount($reportCount)
82  {
83    $this->reportCount = $reportCount;
84  }
85  public function getReportCount()
86  {
87    return $this->reportCount;
88  }
89  public function setRunning($running)
90  {
91    $this->running = $running;
92  }
93  public function getRunning()
94  {
95    return $this->running;
96  }
97  public function setSendNotification($sendNotification)
98  {
99    $this->sendNotification = $sendNotification;
100  }
101  public function getSendNotification()
102  {
103    return $this->sendNotification;
104  }
105  public function setShareEmailAddress($shareEmailAddress)
106  {
107    $this->shareEmailAddress = $shareEmailAddress;
108  }
109  public function getShareEmailAddress()
110  {
111    return $this->shareEmailAddress;
112  }
113  public function setTitle($title)
114  {
115    $this->title = $title;
116  }
117  public function getTitle()
118  {
119    return $this->title;
120  }
121}
122