Edit File: RunRealtimeReportResponse.php
<?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. */ class Google_Service_AnalyticsData_RunRealtimeReportResponse extends Google_Collection { protected $collection_key = 'totals'; protected $dimensionHeadersType = 'Google_Service_AnalyticsData_DimensionHeader'; protected $dimensionHeadersDataType = 'array'; public $kind; protected $maximumsType = 'Google_Service_AnalyticsData_Row'; protected $maximumsDataType = 'array'; protected $metricHeadersType = 'Google_Service_AnalyticsData_MetricHeader'; protected $metricHeadersDataType = 'array'; protected $minimumsType = 'Google_Service_AnalyticsData_Row'; protected $minimumsDataType = 'array'; protected $propertyQuotaType = 'Google_Service_AnalyticsData_PropertyQuota'; protected $propertyQuotaDataType = ''; public $rowCount; protected $rowsType = 'Google_Service_AnalyticsData_Row'; protected $rowsDataType = 'array'; protected $totalsType = 'Google_Service_AnalyticsData_Row'; protected $totalsDataType = 'array'; /** * @param Google_Service_AnalyticsData_DimensionHeader[] */ public function setDimensionHeaders($dimensionHeaders) { $this->dimensionHeaders = $dimensionHeaders; } /** * @return Google_Service_AnalyticsData_DimensionHeader[] */ public function getDimensionHeaders() { return $this->dimensionHeaders; } public function setKind($kind) { $this->kind = $kind; } public function getKind() { return $this->kind; } /** * @param Google_Service_AnalyticsData_Row[] */ public function setMaximums($maximums) { $this->maximums = $maximums; } /** * @return Google_Service_AnalyticsData_Row[] */ public function getMaximums() { return $this->maximums; } /** * @param Google_Service_AnalyticsData_MetricHeader[] */ public function setMetricHeaders($metricHeaders) { $this->metricHeaders = $metricHeaders; } /** * @return Google_Service_AnalyticsData_MetricHeader[] */ public function getMetricHeaders() { return $this->metricHeaders; } /** * @param Google_Service_AnalyticsData_Row[] */ public function setMinimums($minimums) { $this->minimums = $minimums; } /** * @return Google_Service_AnalyticsData_Row[] */ public function getMinimums() { return $this->minimums; } /** * @param Google_Service_AnalyticsData_PropertyQuota */ public function setPropertyQuota(Google_Service_AnalyticsData_PropertyQuota $propertyQuota) { $this->propertyQuota = $propertyQuota; } /** * @return Google_Service_AnalyticsData_PropertyQuota */ public function getPropertyQuota() { return $this->propertyQuota; } public function setRowCount($rowCount) { $this->rowCount = $rowCount; } public function getRowCount() { return $this->rowCount; } /** * @param Google_Service_AnalyticsData_Row[] */ public function setRows($rows) { $this->rows = $rows; } /** * @return Google_Service_AnalyticsData_Row[] */ public function getRows() { return $this->rows; } /** * @param Google_Service_AnalyticsData_Row[] */ public function setTotals($totals) { $this->totals = $totals; } /** * @return Google_Service_AnalyticsData_Row[] */ public function getTotals() { return $this->totals; } }