source: vendor/google/apiclient-services/src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1alphaRunAccessReportRequest.php@ f9c482b

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

Upload new project files

  • Property mode set to 100644
File size: 4.7 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\GoogleAnalyticsAdmin;
19
20class GoogleAnalyticsAdminV1alphaRunAccessReportRequest extends \Google\Collection
21{
22 protected $collection_key = 'orderBys';
23 protected $dateRangesType = GoogleAnalyticsAdminV1alphaAccessDateRange::class;
24 protected $dateRangesDataType = 'array';
25 protected $dimensionFilterType = GoogleAnalyticsAdminV1alphaAccessFilterExpression::class;
26 protected $dimensionFilterDataType = '';
27 protected $dimensionsType = GoogleAnalyticsAdminV1alphaAccessDimension::class;
28 protected $dimensionsDataType = 'array';
29 /**
30 * @var string
31 */
32 public $limit;
33 protected $metricFilterType = GoogleAnalyticsAdminV1alphaAccessFilterExpression::class;
34 protected $metricFilterDataType = '';
35 protected $metricsType = GoogleAnalyticsAdminV1alphaAccessMetric::class;
36 protected $metricsDataType = 'array';
37 /**
38 * @var string
39 */
40 public $offset;
41 protected $orderBysType = GoogleAnalyticsAdminV1alphaAccessOrderBy::class;
42 protected $orderBysDataType = 'array';
43 /**
44 * @var bool
45 */
46 public $returnEntityQuota;
47 /**
48 * @var string
49 */
50 public $timeZone;
51
52 /**
53 * @param GoogleAnalyticsAdminV1alphaAccessDateRange[]
54 */
55 public function setDateRanges($dateRanges)
56 {
57 $this->dateRanges = $dateRanges;
58 }
59 /**
60 * @return GoogleAnalyticsAdminV1alphaAccessDateRange[]
61 */
62 public function getDateRanges()
63 {
64 return $this->dateRanges;
65 }
66 /**
67 * @param GoogleAnalyticsAdminV1alphaAccessFilterExpression
68 */
69 public function setDimensionFilter(GoogleAnalyticsAdminV1alphaAccessFilterExpression $dimensionFilter)
70 {
71 $this->dimensionFilter = $dimensionFilter;
72 }
73 /**
74 * @return GoogleAnalyticsAdminV1alphaAccessFilterExpression
75 */
76 public function getDimensionFilter()
77 {
78 return $this->dimensionFilter;
79 }
80 /**
81 * @param GoogleAnalyticsAdminV1alphaAccessDimension[]
82 */
83 public function setDimensions($dimensions)
84 {
85 $this->dimensions = $dimensions;
86 }
87 /**
88 * @return GoogleAnalyticsAdminV1alphaAccessDimension[]
89 */
90 public function getDimensions()
91 {
92 return $this->dimensions;
93 }
94 /**
95 * @param string
96 */
97 public function setLimit($limit)
98 {
99 $this->limit = $limit;
100 }
101 /**
102 * @return string
103 */
104 public function getLimit()
105 {
106 return $this->limit;
107 }
108 /**
109 * @param GoogleAnalyticsAdminV1alphaAccessFilterExpression
110 */
111 public function setMetricFilter(GoogleAnalyticsAdminV1alphaAccessFilterExpression $metricFilter)
112 {
113 $this->metricFilter = $metricFilter;
114 }
115 /**
116 * @return GoogleAnalyticsAdminV1alphaAccessFilterExpression
117 */
118 public function getMetricFilter()
119 {
120 return $this->metricFilter;
121 }
122 /**
123 * @param GoogleAnalyticsAdminV1alphaAccessMetric[]
124 */
125 public function setMetrics($metrics)
126 {
127 $this->metrics = $metrics;
128 }
129 /**
130 * @return GoogleAnalyticsAdminV1alphaAccessMetric[]
131 */
132 public function getMetrics()
133 {
134 return $this->metrics;
135 }
136 /**
137 * @param string
138 */
139 public function setOffset($offset)
140 {
141 $this->offset = $offset;
142 }
143 /**
144 * @return string
145 */
146 public function getOffset()
147 {
148 return $this->offset;
149 }
150 /**
151 * @param GoogleAnalyticsAdminV1alphaAccessOrderBy[]
152 */
153 public function setOrderBys($orderBys)
154 {
155 $this->orderBys = $orderBys;
156 }
157 /**
158 * @return GoogleAnalyticsAdminV1alphaAccessOrderBy[]
159 */
160 public function getOrderBys()
161 {
162 return $this->orderBys;
163 }
164 /**
165 * @param bool
166 */
167 public function setReturnEntityQuota($returnEntityQuota)
168 {
169 $this->returnEntityQuota = $returnEntityQuota;
170 }
171 /**
172 * @return bool
173 */
174 public function getReturnEntityQuota()
175 {
176 return $this->returnEntityQuota;
177 }
178 /**
179 * @param string
180 */
181 public function setTimeZone($timeZone)
182 {
183 $this->timeZone = $timeZone;
184 }
185 /**
186 * @return string
187 */
188 public function getTimeZone()
189 {
190 return $this->timeZone;
191 }
192}
193
194// Adding a class alias for backwards compatibility with the previous class name.
195class_alias(GoogleAnalyticsAdminV1alphaRunAccessReportRequest::class, 'Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1alphaRunAccessReportRequest');
Note: See TracBrowser for help on using the repository browser.