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\DoubleClickBidManager;
19
20class Query extends \Google\Model
21{
22  /**
23   * @var string
24   */
25  public $kind;
26  protected $metadataType = QueryMetadata::class;
27  protected $metadataDataType = '';
28  protected $paramsType = Parameters::class;
29  protected $paramsDataType = '';
30  /**
31   * @var string
32   */
33  public $queryId;
34  /**
35   * @var string
36   */
37  public $reportDataEndTimeMs;
38  /**
39   * @var string
40   */
41  public $reportDataStartTimeMs;
42  protected $scheduleType = QuerySchedule::class;
43  protected $scheduleDataType = '';
44  /**
45   * @var string
46   */
47  public $timezoneCode;
48
49  /**
50   * @param string
51   */
52  public function setKind($kind)
53  {
54    $this->kind = $kind;
55  }
56  /**
57   * @return string
58   */
59  public function getKind()
60  {
61    return $this->kind;
62  }
63  /**
64   * @param QueryMetadata
65   */
66  public function setMetadata(QueryMetadata $metadata)
67  {
68    $this->metadata = $metadata;
69  }
70  /**
71   * @return QueryMetadata
72   */
73  public function getMetadata()
74  {
75    return $this->metadata;
76  }
77  /**
78   * @param Parameters
79   */
80  public function setParams(Parameters $params)
81  {
82    $this->params = $params;
83  }
84  /**
85   * @return Parameters
86   */
87  public function getParams()
88  {
89    return $this->params;
90  }
91  /**
92   * @param string
93   */
94  public function setQueryId($queryId)
95  {
96    $this->queryId = $queryId;
97  }
98  /**
99   * @return string
100   */
101  public function getQueryId()
102  {
103    return $this->queryId;
104  }
105  /**
106   * @param string
107   */
108  public function setReportDataEndTimeMs($reportDataEndTimeMs)
109  {
110    $this->reportDataEndTimeMs = $reportDataEndTimeMs;
111  }
112  /**
113   * @return string
114   */
115  public function getReportDataEndTimeMs()
116  {
117    return $this->reportDataEndTimeMs;
118  }
119  /**
120   * @param string
121   */
122  public function setReportDataStartTimeMs($reportDataStartTimeMs)
123  {
124    $this->reportDataStartTimeMs = $reportDataStartTimeMs;
125  }
126  /**
127   * @return string
128   */
129  public function getReportDataStartTimeMs()
130  {
131    return $this->reportDataStartTimeMs;
132  }
133  /**
134   * @param QuerySchedule
135   */
136  public function setSchedule(QuerySchedule $schedule)
137  {
138    $this->schedule = $schedule;
139  }
140  /**
141   * @return QuerySchedule
142   */
143  public function getSchedule()
144  {
145    return $this->schedule;
146  }
147  /**
148   * @param string
149   */
150  public function setTimezoneCode($timezoneCode)
151  {
152    $this->timezoneCode = $timezoneCode;
153  }
154  /**
155   * @return string
156   */
157  public function getTimezoneCode()
158  {
159    return $this->timezoneCode;
160  }
161}
162
163// Adding a class alias for backwards compatibility with the previous class name.
164class_alias(Query::class, 'Google_Service_DoubleClickBidManager_Query');
165