[e3d4e0a] | 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 GoogleAnalyticsAdminV1alphaRunAccessReportResponse extends \Google\Collection
|
---|
| 21 | {
|
---|
| 22 | protected $collection_key = 'rows';
|
---|
| 23 | protected $dimensionHeadersType = GoogleAnalyticsAdminV1alphaAccessDimensionHeader::class;
|
---|
| 24 | protected $dimensionHeadersDataType = 'array';
|
---|
| 25 | protected $metricHeadersType = GoogleAnalyticsAdminV1alphaAccessMetricHeader::class;
|
---|
| 26 | protected $metricHeadersDataType = 'array';
|
---|
| 27 | protected $quotaType = GoogleAnalyticsAdminV1alphaAccessQuota::class;
|
---|
| 28 | protected $quotaDataType = '';
|
---|
| 29 | /**
|
---|
| 30 | * @var int
|
---|
| 31 | */
|
---|
| 32 | public $rowCount;
|
---|
| 33 | protected $rowsType = GoogleAnalyticsAdminV1alphaAccessRow::class;
|
---|
| 34 | protected $rowsDataType = 'array';
|
---|
| 35 |
|
---|
| 36 | /**
|
---|
| 37 | * @param GoogleAnalyticsAdminV1alphaAccessDimensionHeader[]
|
---|
| 38 | */
|
---|
| 39 | public function setDimensionHeaders($dimensionHeaders)
|
---|
| 40 | {
|
---|
| 41 | $this->dimensionHeaders = $dimensionHeaders;
|
---|
| 42 | }
|
---|
| 43 | /**
|
---|
| 44 | * @return GoogleAnalyticsAdminV1alphaAccessDimensionHeader[]
|
---|
| 45 | */
|
---|
| 46 | public function getDimensionHeaders()
|
---|
| 47 | {
|
---|
| 48 | return $this->dimensionHeaders;
|
---|
| 49 | }
|
---|
| 50 | /**
|
---|
| 51 | * @param GoogleAnalyticsAdminV1alphaAccessMetricHeader[]
|
---|
| 52 | */
|
---|
| 53 | public function setMetricHeaders($metricHeaders)
|
---|
| 54 | {
|
---|
| 55 | $this->metricHeaders = $metricHeaders;
|
---|
| 56 | }
|
---|
| 57 | /**
|
---|
| 58 | * @return GoogleAnalyticsAdminV1alphaAccessMetricHeader[]
|
---|
| 59 | */
|
---|
| 60 | public function getMetricHeaders()
|
---|
| 61 | {
|
---|
| 62 | return $this->metricHeaders;
|
---|
| 63 | }
|
---|
| 64 | /**
|
---|
| 65 | * @param GoogleAnalyticsAdminV1alphaAccessQuota
|
---|
| 66 | */
|
---|
| 67 | public function setQuota(GoogleAnalyticsAdminV1alphaAccessQuota $quota)
|
---|
| 68 | {
|
---|
| 69 | $this->quota = $quota;
|
---|
| 70 | }
|
---|
| 71 | /**
|
---|
| 72 | * @return GoogleAnalyticsAdminV1alphaAccessQuota
|
---|
| 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 GoogleAnalyticsAdminV1alphaAccessRow[]
|
---|
| 94 | */
|
---|
| 95 | public function setRows($rows)
|
---|
| 96 | {
|
---|
| 97 | $this->rows = $rows;
|
---|
| 98 | }
|
---|
| 99 | /**
|
---|
| 100 | * @return GoogleAnalyticsAdminV1alphaAccessRow[]
|
---|
| 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(GoogleAnalyticsAdminV1alphaRunAccessReportResponse::class, 'Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1alphaRunAccessReportResponse');
|
---|