EVOLUTION-MANAGER
Edit File: GoogleCloudApigeeV1Query.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_Apigee_GoogleCloudApigeeV1Query extends Google_Collection { protected $collection_key = 'metrics'; public $csvDelimiter; public $dimensions; public $filter; public $groupByTimeUnit; public $limit; protected $metricsType = 'Google_Service_Apigee_GoogleCloudApigeeV1QueryMetric'; protected $metricsDataType = 'array'; public $outputFormat; public $reportDefinitionId; public $timeRange; public function setCsvDelimiter($csvDelimiter) { $this->csvDelimiter = $csvDelimiter; } public function getCsvDelimiter() { return $this->csvDelimiter; } public function setDimensions($dimensions) { $this->dimensions = $dimensions; } public function getDimensions() { return $this->dimensions; } public function setFilter($filter) { $this->filter = $filter; } public function getFilter() { return $this->filter; } public function setGroupByTimeUnit($groupByTimeUnit) { $this->groupByTimeUnit = $groupByTimeUnit; } public function getGroupByTimeUnit() { return $this->groupByTimeUnit; } public function setLimit($limit) { $this->limit = $limit; } public function getLimit() { return $this->limit; } /** * @param Google_Service_Apigee_GoogleCloudApigeeV1QueryMetric */ public function setMetrics($metrics) { $this->metrics = $metrics; } /** * @return Google_Service_Apigee_GoogleCloudApigeeV1QueryMetric */ public function getMetrics() { return $this->metrics; } public function setOutputFormat($outputFormat) { $this->outputFormat = $outputFormat; } public function getOutputFormat() { return $this->outputFormat; } public function setReportDefinitionId($reportDefinitionId) { $this->reportDefinitionId = $reportDefinitionId; } public function getReportDefinitionId() { return $this->reportDefinitionId; } public function setTimeRange($timeRange) { $this->timeRange = $timeRange; } public function getTimeRange() { return $this->timeRange; } }