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
18class Google_Service_AnalyticsReporting_Pivot extends Google_Collection
19{
20  protected $collection_key = 'metrics';
21  protected $dimensionFilterClausesType = 'Google_Service_AnalyticsReporting_DimensionFilterClause';
22  protected $dimensionFilterClausesDataType = 'array';
23  protected $dimensionsType = 'Google_Service_AnalyticsReporting_Dimension';
24  protected $dimensionsDataType = 'array';
25  public $maxGroupCount;
26  protected $metricsType = 'Google_Service_AnalyticsReporting_Metric';
27  protected $metricsDataType = 'array';
28  public $startGroup;
29
30  /**
31   * @param Google_Service_AnalyticsReporting_DimensionFilterClause
32   */
33  public function setDimensionFilterClauses($dimensionFilterClauses)
34  {
35    $this->dimensionFilterClauses = $dimensionFilterClauses;
36  }
37  /**
38   * @return Google_Service_AnalyticsReporting_DimensionFilterClause
39   */
40  public function getDimensionFilterClauses()
41  {
42    return $this->dimensionFilterClauses;
43  }
44  /**
45   * @param Google_Service_AnalyticsReporting_Dimension
46   */
47  public function setDimensions($dimensions)
48  {
49    $this->dimensions = $dimensions;
50  }
51  /**
52   * @return Google_Service_AnalyticsReporting_Dimension
53   */
54  public function getDimensions()
55  {
56    return $this->dimensions;
57  }
58  public function setMaxGroupCount($maxGroupCount)
59  {
60    $this->maxGroupCount = $maxGroupCount;
61  }
62  public function getMaxGroupCount()
63  {
64    return $this->maxGroupCount;
65  }
66  /**
67   * @param Google_Service_AnalyticsReporting_Metric
68   */
69  public function setMetrics($metrics)
70  {
71    $this->metrics = $metrics;
72  }
73  /**
74   * @return Google_Service_AnalyticsReporting_Metric
75   */
76  public function getMetrics()
77  {
78    return $this->metrics;
79  }
80  public function setStartGroup($startGroup)
81  {
82    $this->startGroup = $startGroup;
83  }
84  public function getStartGroup()
85  {
86    return $this->startGroup;
87  }
88}
89