JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "GoogleAnalyticsAdminV1betaRunAccessReportResponse.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaRunAccessReportResponse.php
File size: 4.58 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\GoogleAnalyticsAdmin;
class GoogleAnalyticsAdminV1betaRunAccessReportResponse extends \Google\Collection
{
protected $collection_key = 'rows';
protected $dimensionHeadersType = GoogleAnalyticsAdminV1betaAccessDimensionHeader::class;
protected $dimensionHeadersDataType = 'array';
protected $metricHeadersType = GoogleAnalyticsAdminV1betaAccessMetricHeader::class;
protected $metricHeadersDataType = 'array';
protected $quotaType = GoogleAnalyticsAdminV1betaAccessQuota::class;
protected $quotaDataType = '';
/**
* The total number of rows in the query result. `rowCount` is independent of
* the number of rows returned in the response, the `limit` request parameter,
* and the `offset` request parameter. For example if a query returns 175 rows
* and includes `limit` of 50 in the API request, the response will contain
* `rowCount` of 175 but only 50 rows. To learn more about this pagination
* parameter, see [Pagination](https://developers.google.com/analytics/devguid
* es/reporting/data/v1/basics#pagination).
*
* @var int
*/
public $rowCount;
protected $rowsType = GoogleAnalyticsAdminV1betaAccessRow::class;
protected $rowsDataType = 'array';
/**
* The header for a column in the report that corresponds to a specific
* dimension. The number of DimensionHeaders and ordering of DimensionHeaders
* matches the dimensions present in rows.
*
* @param GoogleAnalyticsAdminV1betaAccessDimensionHeader[] $dimensionHeaders
*/
public function setDimensionHeaders($dimensionHeaders)
{
$this->dimensionHeaders = $dimensionHeaders;
}
/**
* @return GoogleAnalyticsAdminV1betaAccessDimensionHeader[]
*/
public function getDimensionHeaders()
{
return $this->dimensionHeaders;
}
/**
* The header for a column in the report that corresponds to a specific
* metric. The number of MetricHeaders and ordering of MetricHeaders matches
* the metrics present in rows.
*
* @param GoogleAnalyticsAdminV1betaAccessMetricHeader[] $metricHeaders
*/
public function setMetricHeaders($metricHeaders)
{
$this->metricHeaders = $metricHeaders;
}
/**
* @return GoogleAnalyticsAdminV1betaAccessMetricHeader[]
*/
public function getMetricHeaders()
{
return $this->metricHeaders;
}
/**
* The quota state for this Analytics property including this request. This
* field doesn't work with account-level requests.
*
* @param GoogleAnalyticsAdminV1betaAccessQuota $quota
*/
public function setQuota(GoogleAnalyticsAdminV1betaAccessQuota $quota)
{
$this->quota = $quota;
}
/**
* @return GoogleAnalyticsAdminV1betaAccessQuota
*/
public function getQuota()
{
return $this->quota;
}
/**
* The total number of rows in the query result. `rowCount` is independent of
* the number of rows returned in the response, the `limit` request parameter,
* and the `offset` request parameter. For example if a query returns 175 rows
* and includes `limit` of 50 in the API request, the response will contain
* `rowCount` of 175 but only 50 rows. To learn more about this pagination
* parameter, see [Pagination](https://developers.google.com/analytics/devguid
* es/reporting/data/v1/basics#pagination).
*
* @param int $rowCount
*/
public function setRowCount($rowCount)
{
$this->rowCount = $rowCount;
}
/**
* @return int
*/
public function getRowCount()
{
return $this->rowCount;
}
/**
* Rows of dimension value combinations and metric values in the report.
*
* @param GoogleAnalyticsAdminV1betaAccessRow[] $rows
*/
public function setRows($rows)
{
$this->rows = $rows;
}
/**
* @return GoogleAnalyticsAdminV1betaAccessRow[]
*/
public function getRows()
{
return $this->rows;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleAnalyticsAdminV1betaRunAccessReportResponse::class, 'Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaRunAccessReportResponse');