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 |
|
---|
18 | namespace Google\Service\AnalyticsReporting;
|
---|
19 |
|
---|
20 | class Pivot extends \Google\Collection
|
---|
21 | {
|
---|
22 | protected $collection_key = 'metrics';
|
---|
23 | protected $dimensionFilterClausesType = DimensionFilterClause::class;
|
---|
24 | protected $dimensionFilterClausesDataType = 'array';
|
---|
25 | protected $dimensionsType = Dimension::class;
|
---|
26 | protected $dimensionsDataType = 'array';
|
---|
27 | /**
|
---|
28 | * @var int
|
---|
29 | */
|
---|
30 | public $maxGroupCount;
|
---|
31 | protected $metricsType = Metric::class;
|
---|
32 | protected $metricsDataType = 'array';
|
---|
33 | /**
|
---|
34 | * @var int
|
---|
35 | */
|
---|
36 | public $startGroup;
|
---|
37 |
|
---|
38 | /**
|
---|
39 | * @param DimensionFilterClause[]
|
---|
40 | */
|
---|
41 | public function setDimensionFilterClauses($dimensionFilterClauses)
|
---|
42 | {
|
---|
43 | $this->dimensionFilterClauses = $dimensionFilterClauses;
|
---|
44 | }
|
---|
45 | /**
|
---|
46 | * @return DimensionFilterClause[]
|
---|
47 | */
|
---|
48 | public function getDimensionFilterClauses()
|
---|
49 | {
|
---|
50 | return $this->dimensionFilterClauses;
|
---|
51 | }
|
---|
52 | /**
|
---|
53 | * @param Dimension[]
|
---|
54 | */
|
---|
55 | public function setDimensions($dimensions)
|
---|
56 | {
|
---|
57 | $this->dimensions = $dimensions;
|
---|
58 | }
|
---|
59 | /**
|
---|
60 | * @return Dimension[]
|
---|
61 | */
|
---|
62 | public function getDimensions()
|
---|
63 | {
|
---|
64 | return $this->dimensions;
|
---|
65 | }
|
---|
66 | /**
|
---|
67 | * @param int
|
---|
68 | */
|
---|
69 | public function setMaxGroupCount($maxGroupCount)
|
---|
70 | {
|
---|
71 | $this->maxGroupCount = $maxGroupCount;
|
---|
72 | }
|
---|
73 | /**
|
---|
74 | * @return int
|
---|
75 | */
|
---|
76 | public function getMaxGroupCount()
|
---|
77 | {
|
---|
78 | return $this->maxGroupCount;
|
---|
79 | }
|
---|
80 | /**
|
---|
81 | * @param Metric[]
|
---|
82 | */
|
---|
83 | public function setMetrics($metrics)
|
---|
84 | {
|
---|
85 | $this->metrics = $metrics;
|
---|
86 | }
|
---|
87 | /**
|
---|
88 | * @return Metric[]
|
---|
89 | */
|
---|
90 | public function getMetrics()
|
---|
91 | {
|
---|
92 | return $this->metrics;
|
---|
93 | }
|
---|
94 | /**
|
---|
95 | * @param int
|
---|
96 | */
|
---|
97 | public function setStartGroup($startGroup)
|
---|
98 | {
|
---|
99 | $this->startGroup = $startGroup;
|
---|
100 | }
|
---|
101 | /**
|
---|
102 | * @return int
|
---|
103 | */
|
---|
104 | public function getStartGroup()
|
---|
105 | {
|
---|
106 | return $this->startGroup;
|
---|
107 | }
|
---|
108 | }
|
---|
109 |
|
---|
110 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
111 | class_alias(Pivot::class, 'Google_Service_AnalyticsReporting_Pivot');
|
---|