Nessuna descrizione

SearchAnalyticsQueryRequest.php 2.5KB

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