source: vendor/google/apiclient-services/src/AnalyticsData/RunReportRequest.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload new project files

  • Property mode set to 100644
File size: 5.5 KB
Line 
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\AnalyticsData;
19
20class RunReportRequest extends \Google\Collection
21{
22 protected $collection_key = 'orderBys';
23 protected $cohortSpecType = CohortSpec::class;
24 protected $cohortSpecDataType = '';
25 protected $comparisonsType = Comparison::class;
26 protected $comparisonsDataType = 'array';
27 /**
28 * @var string
29 */
30 public $currencyCode;
31 protected $dateRangesType = DateRange::class;
32 protected $dateRangesDataType = 'array';
33 protected $dimensionFilterType = FilterExpression::class;
34 protected $dimensionFilterDataType = '';
35 protected $dimensionsType = Dimension::class;
36 protected $dimensionsDataType = 'array';
37 /**
38 * @var bool
39 */
40 public $keepEmptyRows;
41 /**
42 * @var string
43 */
44 public $limit;
45 /**
46 * @var string[]
47 */
48 public $metricAggregations;
49 protected $metricFilterType = FilterExpression::class;
50 protected $metricFilterDataType = '';
51 protected $metricsType = Metric::class;
52 protected $metricsDataType = 'array';
53 /**
54 * @var string
55 */
56 public $offset;
57 protected $orderBysType = OrderBy::class;
58 protected $orderBysDataType = 'array';
59 /**
60 * @var string
61 */
62 public $property;
63 /**
64 * @var bool
65 */
66 public $returnPropertyQuota;
67
68 /**
69 * @param CohortSpec
70 */
71 public function setCohortSpec(CohortSpec $cohortSpec)
72 {
73 $this->cohortSpec = $cohortSpec;
74 }
75 /**
76 * @return CohortSpec
77 */
78 public function getCohortSpec()
79 {
80 return $this->cohortSpec;
81 }
82 /**
83 * @param Comparison[]
84 */
85 public function setComparisons($comparisons)
86 {
87 $this->comparisons = $comparisons;
88 }
89 /**
90 * @return Comparison[]
91 */
92 public function getComparisons()
93 {
94 return $this->comparisons;
95 }
96 /**
97 * @param string
98 */
99 public function setCurrencyCode($currencyCode)
100 {
101 $this->currencyCode = $currencyCode;
102 }
103 /**
104 * @return string
105 */
106 public function getCurrencyCode()
107 {
108 return $this->currencyCode;
109 }
110 /**
111 * @param DateRange[]
112 */
113 public function setDateRanges($dateRanges)
114 {
115 $this->dateRanges = $dateRanges;
116 }
117 /**
118 * @return DateRange[]
119 */
120 public function getDateRanges()
121 {
122 return $this->dateRanges;
123 }
124 /**
125 * @param FilterExpression
126 */
127 public function setDimensionFilter(FilterExpression $dimensionFilter)
128 {
129 $this->dimensionFilter = $dimensionFilter;
130 }
131 /**
132 * @return FilterExpression
133 */
134 public function getDimensionFilter()
135 {
136 return $this->dimensionFilter;
137 }
138 /**
139 * @param Dimension[]
140 */
141 public function setDimensions($dimensions)
142 {
143 $this->dimensions = $dimensions;
144 }
145 /**
146 * @return Dimension[]
147 */
148 public function getDimensions()
149 {
150 return $this->dimensions;
151 }
152 /**
153 * @param bool
154 */
155 public function setKeepEmptyRows($keepEmptyRows)
156 {
157 $this->keepEmptyRows = $keepEmptyRows;
158 }
159 /**
160 * @return bool
161 */
162 public function getKeepEmptyRows()
163 {
164 return $this->keepEmptyRows;
165 }
166 /**
167 * @param string
168 */
169 public function setLimit($limit)
170 {
171 $this->limit = $limit;
172 }
173 /**
174 * @return string
175 */
176 public function getLimit()
177 {
178 return $this->limit;
179 }
180 /**
181 * @param string[]
182 */
183 public function setMetricAggregations($metricAggregations)
184 {
185 $this->metricAggregations = $metricAggregations;
186 }
187 /**
188 * @return string[]
189 */
190 public function getMetricAggregations()
191 {
192 return $this->metricAggregations;
193 }
194 /**
195 * @param FilterExpression
196 */
197 public function setMetricFilter(FilterExpression $metricFilter)
198 {
199 $this->metricFilter = $metricFilter;
200 }
201 /**
202 * @return FilterExpression
203 */
204 public function getMetricFilter()
205 {
206 return $this->metricFilter;
207 }
208 /**
209 * @param Metric[]
210 */
211 public function setMetrics($metrics)
212 {
213 $this->metrics = $metrics;
214 }
215 /**
216 * @return Metric[]
217 */
218 public function getMetrics()
219 {
220 return $this->metrics;
221 }
222 /**
223 * @param string
224 */
225 public function setOffset($offset)
226 {
227 $this->offset = $offset;
228 }
229 /**
230 * @return string
231 */
232 public function getOffset()
233 {
234 return $this->offset;
235 }
236 /**
237 * @param OrderBy[]
238 */
239 public function setOrderBys($orderBys)
240 {
241 $this->orderBys = $orderBys;
242 }
243 /**
244 * @return OrderBy[]
245 */
246 public function getOrderBys()
247 {
248 return $this->orderBys;
249 }
250 /**
251 * @param string
252 */
253 public function setProperty($property)
254 {
255 $this->property = $property;
256 }
257 /**
258 * @return string
259 */
260 public function getProperty()
261 {
262 return $this->property;
263 }
264 /**
265 * @param bool
266 */
267 public function setReturnPropertyQuota($returnPropertyQuota)
268 {
269 $this->returnPropertyQuota = $returnPropertyQuota;
270 }
271 /**
272 * @return bool
273 */
274 public function getReturnPropertyQuota()
275 {
276 return $this->returnPropertyQuota;
277 }
278}
279
280// Adding a class alias for backwards compatibility with the previous class name.
281class_alias(RunReportRequest::class, 'Google_Service_AnalyticsData_RunReportRequest');
Note: See TracBrowser for help on using the repository browser.