1 | <?php |
||
11 | class Query extends Model |
||
12 | { |
||
13 | protected $id = null; |
||
14 | |||
15 | /** |
||
16 | * Identifiers of counters. Used instead of the parameter id. |
||
17 | * @var int[] |
||
18 | */ |
||
19 | protected $ids = null; |
||
20 | |||
21 | protected $preset = null; |
||
22 | |||
23 | protected $dimensions = null; |
||
24 | |||
25 | protected $metrics = null; |
||
26 | |||
27 | protected $sort = null; |
||
28 | |||
29 | protected $limit = null; |
||
30 | |||
31 | protected $offset = null; |
||
32 | |||
33 | protected $date1 = null; |
||
34 | |||
35 | protected $date2 = null; |
||
36 | |||
37 | protected $filters = null; |
||
38 | |||
39 | protected $group = null; |
||
40 | |||
41 | protected $autoGroupType = null; |
||
42 | |||
43 | protected $autoGroupSize = null; |
||
44 | |||
45 | protected $mappingClasses = []; |
||
46 | |||
47 | protected $propNameMap = [ |
||
48 | 'auto_group_type' => 'autoGroupType', |
||
49 | 'auto_group_size' => 'autoGroupSize' |
||
50 | ]; |
||
51 | |||
52 | /** |
||
53 | * Retrieve the id property |
||
54 | * |
||
55 | * @return int|null |
||
56 | */ |
||
57 | 8 | public function getId() |
|
61 | |||
62 | /** |
||
63 | * Set the id property |
||
64 | * |
||
65 | * @param int $id |
||
66 | * @return $this |
||
67 | */ |
||
68 | 5 | public function setId($id) |
|
73 | |||
74 | |||
75 | /** |
||
76 | * Retrieve the ids property |
||
77 | * |
||
78 | * @return int[]|null |
||
79 | */ |
||
80 | 1 | public function getIds() |
|
84 | |||
85 | /** |
||
86 | * Set the ids property |
||
87 | * |
||
88 | * @param int[] $ids |
||
89 | * @return $this |
||
90 | */ |
||
91 | 1 | public function setIds($ids) |
|
96 | |||
97 | /** |
||
98 | * Retrieve the preset property |
||
99 | * |
||
100 | * @return string|null |
||
101 | */ |
||
102 | 2 | public function getPreset() |
|
106 | |||
107 | /** |
||
108 | * Set the preset property |
||
109 | * |
||
110 | * @param string $preset |
||
111 | * @return $this |
||
112 | */ |
||
113 | 1 | public function setPreset($preset) |
|
118 | |||
119 | /** |
||
120 | * Retrieve the dimensions property |
||
121 | * |
||
122 | * @return array|null |
||
123 | */ |
||
124 | 9 | public function getDimensions() |
|
128 | |||
129 | /** |
||
130 | * Set the dimensions property |
||
131 | * |
||
132 | * @param array $dimensions |
||
133 | * @return $this |
||
134 | */ |
||
135 | 6 | public function setDimensions($dimensions) |
|
140 | |||
141 | /** |
||
142 | * Retrieve the metrics property |
||
143 | * |
||
144 | * @return array|null |
||
145 | */ |
||
146 | 9 | public function getMetrics() |
|
150 | |||
151 | /** |
||
152 | * Set the metrics property |
||
153 | * |
||
154 | * @param array $metrics |
||
155 | * @return $this |
||
156 | */ |
||
157 | 6 | public function setMetrics($metrics) |
|
162 | |||
163 | /** |
||
164 | * Retrieve the sort property |
||
165 | * |
||
166 | * @return array|null |
||
167 | */ |
||
168 | 9 | public function getSort() |
|
172 | |||
173 | /** |
||
174 | * Set the sort property |
||
175 | * |
||
176 | * @param array $sort |
||
177 | * @return $this |
||
178 | */ |
||
179 | 6 | public function setSort($sort) |
|
184 | |||
185 | /** |
||
186 | * Retrieve the limit property |
||
187 | * |
||
188 | * @return int|null |
||
189 | */ |
||
190 | 5 | public function getLimit() |
|
194 | |||
195 | /** |
||
196 | * Set the limit property |
||
197 | * |
||
198 | * @param int $limit |
||
199 | * @return $this |
||
200 | */ |
||
201 | 3 | public function setLimit($limit) |
|
206 | |||
207 | /** |
||
208 | * Retrieve the offset property |
||
209 | * |
||
210 | * @return int|null |
||
211 | */ |
||
212 | 5 | public function getOffset() |
|
216 | |||
217 | /** |
||
218 | * Set the offset property |
||
219 | * |
||
220 | * @param int $offset |
||
221 | * @return $this |
||
222 | */ |
||
223 | 3 | public function setOffset($offset) |
|
228 | |||
229 | /** |
||
230 | * Retrieve the date1 property |
||
231 | * |
||
232 | * @return string|null |
||
233 | */ |
||
234 | 9 | public function getDate1() |
|
238 | |||
239 | /** |
||
240 | * Set the date1 property |
||
241 | * |
||
242 | * @param string $date1 |
||
243 | * @return $this |
||
244 | */ |
||
245 | 6 | public function setDate1($date1) |
|
250 | |||
251 | /** |
||
252 | * Retrieve the date2 property |
||
253 | * |
||
254 | * @return string|null |
||
255 | */ |
||
256 | 9 | public function getDate2() |
|
260 | |||
261 | /** |
||
262 | * Set the date2 property |
||
263 | * |
||
264 | * @param string $date2 |
||
265 | * @return $this |
||
266 | */ |
||
267 | 6 | public function setDate2($date2) |
|
272 | |||
273 | /** |
||
274 | * Retrieve the filters property |
||
275 | * |
||
276 | * @return string|null |
||
277 | */ |
||
278 | 1 | public function getFilters() |
|
282 | |||
283 | /** |
||
284 | * Set the filters property |
||
285 | * |
||
286 | * @param string $filters |
||
287 | * @return $this |
||
288 | */ |
||
289 | 1 | public function setFilters($filters) |
|
294 | |||
295 | /** |
||
296 | * Retrieve the group property |
||
297 | * |
||
298 | * @return string|null |
||
299 | */ |
||
300 | 2 | public function getGroup() |
|
304 | |||
305 | /** |
||
306 | * Set the group property |
||
307 | * |
||
308 | * @param string $group |
||
309 | * @return $this |
||
310 | */ |
||
311 | 2 | public function setGroup($group) |
|
316 | |||
317 | /** |
||
318 | * Retrieve the autoGroupType property |
||
319 | * |
||
320 | * @return string|null |
||
321 | */ |
||
322 | 2 | public function getAutoGroupType() |
|
326 | |||
327 | /** |
||
328 | * Set the autoGroupType property |
||
329 | * |
||
330 | * @param string $autoGroupType |
||
331 | * @return $this |
||
332 | */ |
||
333 | 2 | public function setAutoGroupType($autoGroupType) |
|
338 | |||
339 | /** |
||
340 | * Retrieve the autoGroupSize property |
||
341 | * |
||
342 | * @return string|null |
||
343 | */ |
||
344 | 2 | public function getAutoGroupSize() |
|
348 | |||
349 | /** |
||
350 | * Set the autoGroupSize property |
||
351 | * |
||
352 | * @param string $autoGroupSize |
||
353 | * @return $this |
||
354 | */ |
||
355 | 2 | public function setAutoGroupSize($autoGroupSize) |
|
360 | } |
||
361 |