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_Webmasters_SearchAnalyticsQueryRequest extends Google_Collection
19{
20  protected $collection_key = 'dimensions';
21  public $aggregationType;
22  protected $dimensionFilterGroupsType = 'Google_Service_Webmasters_ApiDimensionFilterGroup';
23  protected $dimensionFilterGroupsDataType = 'array';
24  public $dimensions;
25  public $endDate;
26  public $rowLimit;
27  public $searchType;
28  public $startDate;
29  public $startRow;
30
31  public function setAggregationType($aggregationType)
32  {
33    $this->aggregationType = $aggregationType;
34  }
35  public function getAggregationType()
36  {
37    return $this->aggregationType;
38  }
39  /**
40   * @param Google_Service_Webmasters_ApiDimensionFilterGroup
41   */
42  public function setDimensionFilterGroups($dimensionFilterGroups)
43  {
44    $this->dimensionFilterGroups = $dimensionFilterGroups;
45  }
46  /**
47   * @return Google_Service_Webmasters_ApiDimensionFilterGroup
48   */
49  public function getDimensionFilterGroups()
50  {
51    return $this->dimensionFilterGroups;
52  }
53  public function setDimensions($dimensions)
54  {
55    $this->dimensions = $dimensions;
56  }
57  public function getDimensions()
58  {
59    return $this->dimensions;
60  }
61  public function setEndDate($endDate)
62  {
63    $this->endDate = $endDate;
64  }
65  public function getEndDate()
66  {
67    return $this->endDate;
68  }
69  public function setRowLimit($rowLimit)
70  {
71    $this->rowLimit = $rowLimit;
72  }
73  public function getRowLimit()
74  {
75    return $this->rowLimit;
76  }
77  public function setSearchType($searchType)
78  {
79    $this->searchType = $searchType;
80  }
81  public function getSearchType()
82  {
83    return $this->searchType;
84  }
85  public function setStartDate($startDate)
86  {
87    $this->startDate = $startDate;
88  }
89  public function getStartDate()
90  {
91    return $this->startDate;
92  }
93  public function setStartRow($startRow)
94  {
95    $this->startRow = $startRow;
96  }
97  public function getStartRow()
98  {
99    return $this->startRow;
100  }
101}
102