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\GoogleAnalyticsAdmin;
|
---|
19 |
|
---|
20 | class GoogleAnalyticsAdminV1betaRunAccessReportResponse extends \Google\Collection
|
---|
21 | {
|
---|
22 | protected $collection_key = 'rows';
|
---|
23 | protected $dimensionHeadersType = GoogleAnalyticsAdminV1betaAccessDimensionHeader::class;
|
---|
24 | protected $dimensionHeadersDataType = 'array';
|
---|
25 | protected $metricHeadersType = GoogleAnalyticsAdminV1betaAccessMetricHeader::class;
|
---|
26 | protected $metricHeadersDataType = 'array';
|
---|
27 | protected $quotaType = GoogleAnalyticsAdminV1betaAccessQuota::class;
|
---|
28 | protected $quotaDataType = '';
|
---|
29 | /**
|
---|
30 | * @var int
|
---|
31 | */
|
---|
32 | public $rowCount;
|
---|
33 | protected $rowsType = GoogleAnalyticsAdminV1betaAccessRow::class;
|
---|
34 | protected $rowsDataType = 'array';
|
---|
35 |
|
---|
36 | /**
|
---|
37 | * @param GoogleAnalyticsAdminV1betaAccessDimensionHeader[]
|
---|
38 | */
|
---|
39 | public function setDimensionHeaders($dimensionHeaders)
|
---|
40 | {
|
---|
41 | $this->dimensionHeaders = $dimensionHeaders;
|
---|
42 | }
|
---|
43 | /**
|
---|
44 | * @return GoogleAnalyticsAdminV1betaAccessDimensionHeader[]
|
---|
45 | */
|
---|
46 | public function getDimensionHeaders()
|
---|
47 | {
|
---|
48 | return $this->dimensionHeaders;
|
---|
49 | }
|
---|
50 | /**
|
---|
51 | * @param GoogleAnalyticsAdminV1betaAccessMetricHeader[]
|
---|
52 | */
|
---|
53 | public function setMetricHeaders($metricHeaders)
|
---|
54 | {
|
---|
55 | $this->metricHeaders = $metricHeaders;
|
---|
56 | }
|
---|
57 | /**
|
---|
58 | * @return GoogleAnalyticsAdminV1betaAccessMetricHeader[]
|
---|
59 | */
|
---|
60 | public function getMetricHeaders()
|
---|
61 | {
|
---|
62 | return $this->metricHeaders;
|
---|
63 | }
|
---|
64 | /**
|
---|
65 | * @param GoogleAnalyticsAdminV1betaAccessQuota
|
---|
66 | */
|
---|
67 | public function setQuota(GoogleAnalyticsAdminV1betaAccessQuota $quota)
|
---|
68 | {
|
---|
69 | $this->quota = $quota;
|
---|
70 | }
|
---|
71 | /**
|
---|
72 | * @return GoogleAnalyticsAdminV1betaAccessQuota
|
---|
73 | */
|
---|
74 | public function getQuota()
|
---|
75 | {
|
---|
76 | return $this->quota;
|
---|
77 | }
|
---|
78 | /**
|
---|
79 | * @param int
|
---|
80 | */
|
---|
81 | public function setRowCount($rowCount)
|
---|
82 | {
|
---|
83 | $this->rowCount = $rowCount;
|
---|
84 | }
|
---|
85 | /**
|
---|
86 | * @return int
|
---|
87 | */
|
---|
88 | public function getRowCount()
|
---|
89 | {
|
---|
90 | return $this->rowCount;
|
---|
91 | }
|
---|
92 | /**
|
---|
93 | * @param GoogleAnalyticsAdminV1betaAccessRow[]
|
---|
94 | */
|
---|
95 | public function setRows($rows)
|
---|
96 | {
|
---|
97 | $this->rows = $rows;
|
---|
98 | }
|
---|
99 | /**
|
---|
100 | * @return GoogleAnalyticsAdminV1betaAccessRow[]
|
---|
101 | */
|
---|
102 | public function getRows()
|
---|
103 | {
|
---|
104 | return $this->rows;
|
---|
105 | }
|
---|
106 | }
|
---|
107 |
|
---|
108 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
109 | class_alias(GoogleAnalyticsAdminV1betaRunAccessReportResponse::class, 'Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaRunAccessReportResponse');
|
---|