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 | 8 | ||
52 | /** |
||
53 | 8 | * Retrieve the id property |
|
54 | * |
||
55 | * @return int|null |
||
56 | */ |
||
57 | public function getId() |
||
61 | |||
62 | 5 | /** |
|
63 | * Set the id property |
||
64 | 5 | * |
|
65 | 5 | * @param int $id |
|
66 | * @return $this |
||
67 | */ |
||
68 | public function setId($id) |
||
73 | 2 | ||
74 | |||
75 | 2 | /** |
|
76 | * Retrieve the ids property |
||
77 | * |
||
78 | * @return int[]|null |
||
79 | */ |
||
80 | public function getIds() |
||
84 | 1 | ||
85 | /** |
||
86 | 1 | * Set the ids property |
|
87 | 1 | * |
|
88 | * @param int[] $ids |
||
89 | * @return $this |
||
90 | */ |
||
91 | public function setIds($ids) |
||
96 | |||
97 | 8 | /** |
|
98 | * Retrieve the preset property |
||
99 | * |
||
100 | * @return string|null |
||
101 | */ |
||
102 | public function getPreset() |
||
106 | 5 | ||
107 | /** |
||
108 | 5 | * Set the preset property |
|
109 | 5 | * |
|
110 | * @param string $preset |
||
111 | * @return $this |
||
112 | */ |
||
113 | public function setPreset($preset) |
||
118 | |||
119 | 8 | /** |
|
120 | * Retrieve the dimensions property |
||
121 | * |
||
122 | * @return array|null |
||
123 | */ |
||
124 | public function getDimensions() |
||
128 | 5 | ||
129 | /** |
||
130 | 5 | * Set the dimensions property |
|
131 | 5 | * |
|
132 | * @param array $dimensions |
||
133 | * @return $this |
||
134 | */ |
||
135 | public function setDimensions($dimensions) |
||
140 | |||
141 | 8 | /** |
|
142 | * Retrieve the metrics property |
||
143 | * |
||
144 | * @return array|null |
||
145 | */ |
||
146 | public function getMetrics() |
||
150 | 5 | ||
151 | /** |
||
152 | 5 | * Set the metrics property |
|
153 | 5 | * |
|
154 | * @param array $metrics |
||
155 | * @return $this |
||
156 | */ |
||
157 | public function setMetrics($metrics) |
||
162 | |||
163 | 5 | /** |
|
164 | * Retrieve the sort property |
||
165 | * |
||
166 | * @return array|null |
||
167 | */ |
||
168 | public function getSort() |
||
172 | 3 | ||
173 | /** |
||
174 | 3 | * Set the sort property |
|
175 | 3 | * |
|
176 | * @param array $sort |
||
177 | * @return $this |
||
178 | */ |
||
179 | public function setSort($sort) |
||
184 | |||
185 | 5 | /** |
|
186 | * Retrieve the limit property |
||
187 | * |
||
188 | * @return int|null |
||
189 | */ |
||
190 | public function getLimit() |
||
194 | 3 | ||
195 | /** |
||
196 | 3 | * Set the limit property |
|
197 | 3 | * |
|
198 | * @param int $limit |
||
199 | * @return $this |
||
200 | */ |
||
201 | public function setLimit($limit) |
||
206 | |||
207 | 8 | /** |
|
208 | * Retrieve the offset property |
||
209 | * |
||
210 | * @return int|null |
||
211 | */ |
||
212 | public function getOffset() |
||
216 | 5 | ||
217 | /** |
||
218 | 5 | * Set the offset property |
|
219 | 5 | * |
|
220 | * @param int $offset |
||
221 | * @return $this |
||
222 | */ |
||
223 | public function setOffset($offset) |
||
228 | |||
229 | 8 | /** |
|
230 | * Retrieve the date1 property |
||
231 | * |
||
232 | * @return string|null |
||
233 | */ |
||
234 | public function getDate1() |
||
238 | 5 | ||
239 | /** |
||
240 | 5 | * Set the date1 property |
|
241 | 5 | * |
|
242 | * @param string $date1 |
||
243 | * @return $this |
||
244 | */ |
||
245 | public function setDate1($date1) |
||
250 | |||
251 | /** |
||
252 | * Retrieve the date2 property |
||
253 | * |
||
254 | * @return string|null |
||
255 | */ |
||
256 | public function getDate2() |
||
260 | |||
261 | /** |
||
262 | * Set the date2 property |
||
263 | * |
||
264 | * @param string $date2 |
||
265 | * @return $this |
||
266 | */ |
||
267 | public function setDate2($date2) |
||
272 | |||
273 | 1 | /** |
|
274 | * Retrieve the filters property |
||
275 | * |
||
276 | * @return string|null |
||
277 | */ |
||
278 | public function getFilters() |
||
282 | 1 | ||
283 | /** |
||
284 | 1 | * Set the filters property |
|
285 | 1 | * |
|
286 | * @param string $filters |
||
287 | * @return $this |
||
288 | */ |
||
289 | public function setFilters($filters) |
||
294 | |||
295 | 1 | /** |
|
296 | * Retrieve the group property |
||
297 | * |
||
298 | * @return string|null |
||
299 | */ |
||
300 | public function getGroup() |
||
304 | 1 | ||
305 | /** |
||
306 | 1 | * Set the group property |
|
307 | 1 | * |
|
308 | * @param string $group |
||
309 | * @return $this |
||
310 | */ |
||
311 | public function setGroup($group) |
||
316 | |||
317 | 1 | /** |
|
318 | * Retrieve the autoGroupType property |
||
319 | * |
||
320 | * @return string|null |
||
321 | */ |
||
322 | public function getAutoGroupType() |
||
326 | 1 | ||
327 | /** |
||
328 | 1 | * Set the autoGroupType property |
|
329 | 1 | * |
|
330 | * @param string $autoGroupType |
||
331 | * @return $this |
||
332 | */ |
||
333 | public function setAutoGroupType($autoGroupType) |
||
338 | |||
339 | /** |
||
340 | * Retrieve the autoGroupSize property |
||
341 | * |
||
342 | * @return string|null |
||
343 | */ |
||
344 | public function getAutoGroupSize() |
||
348 | |||
349 | /** |
||
350 | * Set the autoGroupSize property |
||
351 | * |
||
352 | * @param string $autoGroupSize |
||
353 | * @return $this |
||
354 | */ |
||
355 | public function setAutoGroupSize($autoGroupSize) |
||
360 | } |
||
361 |