暫無描述

AdsenseReportsGenerateResponse.php 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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_AdSense_AdsenseReportsGenerateResponse extends Google_Collection
  18. {
  19. protected $collection_key = 'warnings';
  20. public $averages;
  21. public $endDate;
  22. protected $headersType = 'Google_Service_AdSense_AdsenseReportsGenerateResponseHeaders';
  23. protected $headersDataType = 'array';
  24. public $kind;
  25. public $rows;
  26. public $startDate;
  27. public $totalMatchedRows;
  28. public $totals;
  29. public $warnings;
  30. public function setAverages($averages)
  31. {
  32. $this->averages = $averages;
  33. }
  34. public function getAverages()
  35. {
  36. return $this->averages;
  37. }
  38. public function setEndDate($endDate)
  39. {
  40. $this->endDate = $endDate;
  41. }
  42. public function getEndDate()
  43. {
  44. return $this->endDate;
  45. }
  46. /**
  47. * @param Google_Service_AdSense_AdsenseReportsGenerateResponseHeaders
  48. */
  49. public function setHeaders($headers)
  50. {
  51. $this->headers = $headers;
  52. }
  53. /**
  54. * @return Google_Service_AdSense_AdsenseReportsGenerateResponseHeaders
  55. */
  56. public function getHeaders()
  57. {
  58. return $this->headers;
  59. }
  60. public function setKind($kind)
  61. {
  62. $this->kind = $kind;
  63. }
  64. public function getKind()
  65. {
  66. return $this->kind;
  67. }
  68. public function setRows($rows)
  69. {
  70. $this->rows = $rows;
  71. }
  72. public function getRows()
  73. {
  74. return $this->rows;
  75. }
  76. public function setStartDate($startDate)
  77. {
  78. $this->startDate = $startDate;
  79. }
  80. public function getStartDate()
  81. {
  82. return $this->startDate;
  83. }
  84. public function setTotalMatchedRows($totalMatchedRows)
  85. {
  86. $this->totalMatchedRows = $totalMatchedRows;
  87. }
  88. public function getTotalMatchedRows()
  89. {
  90. return $this->totalMatchedRows;
  91. }
  92. public function setTotals($totals)
  93. {
  94. $this->totals = $totals;
  95. }
  96. public function getTotals()
  97. {
  98. return $this->totals;
  99. }
  100. public function setWarnings($warnings)
  101. {
  102. $this->warnings = $warnings;
  103. }
  104. public function getWarnings()
  105. {
  106. return $this->warnings;
  107. }
  108. }