Nessuna descrizione

ReportData.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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_AnalyticsReporting_ReportData extends Google_Collection
  18. {
  19. protected $collection_key = 'totals';
  20. public $dataLastRefreshed;
  21. public $isDataGolden;
  22. protected $maximumsType = 'Google_Service_AnalyticsReporting_DateRangeValues';
  23. protected $maximumsDataType = 'array';
  24. protected $minimumsType = 'Google_Service_AnalyticsReporting_DateRangeValues';
  25. protected $minimumsDataType = 'array';
  26. public $rowCount;
  27. protected $rowsType = 'Google_Service_AnalyticsReporting_ReportRow';
  28. protected $rowsDataType = 'array';
  29. public $samplesReadCounts;
  30. public $samplingSpaceSizes;
  31. protected $totalsType = 'Google_Service_AnalyticsReporting_DateRangeValues';
  32. protected $totalsDataType = 'array';
  33. public function setDataLastRefreshed($dataLastRefreshed)
  34. {
  35. $this->dataLastRefreshed = $dataLastRefreshed;
  36. }
  37. public function getDataLastRefreshed()
  38. {
  39. return $this->dataLastRefreshed;
  40. }
  41. public function setIsDataGolden($isDataGolden)
  42. {
  43. $this->isDataGolden = $isDataGolden;
  44. }
  45. public function getIsDataGolden()
  46. {
  47. return $this->isDataGolden;
  48. }
  49. /**
  50. * @param Google_Service_AnalyticsReporting_DateRangeValues
  51. */
  52. public function setMaximums($maximums)
  53. {
  54. $this->maximums = $maximums;
  55. }
  56. /**
  57. * @return Google_Service_AnalyticsReporting_DateRangeValues
  58. */
  59. public function getMaximums()
  60. {
  61. return $this->maximums;
  62. }
  63. /**
  64. * @param Google_Service_AnalyticsReporting_DateRangeValues
  65. */
  66. public function setMinimums($minimums)
  67. {
  68. $this->minimums = $minimums;
  69. }
  70. /**
  71. * @return Google_Service_AnalyticsReporting_DateRangeValues
  72. */
  73. public function getMinimums()
  74. {
  75. return $this->minimums;
  76. }
  77. public function setRowCount($rowCount)
  78. {
  79. $this->rowCount = $rowCount;
  80. }
  81. public function getRowCount()
  82. {
  83. return $this->rowCount;
  84. }
  85. /**
  86. * @param Google_Service_AnalyticsReporting_ReportRow
  87. */
  88. public function setRows($rows)
  89. {
  90. $this->rows = $rows;
  91. }
  92. /**
  93. * @return Google_Service_AnalyticsReporting_ReportRow
  94. */
  95. public function getRows()
  96. {
  97. return $this->rows;
  98. }
  99. public function setSamplesReadCounts($samplesReadCounts)
  100. {
  101. $this->samplesReadCounts = $samplesReadCounts;
  102. }
  103. public function getSamplesReadCounts()
  104. {
  105. return $this->samplesReadCounts;
  106. }
  107. public function setSamplingSpaceSizes($samplingSpaceSizes)
  108. {
  109. $this->samplingSpaceSizes = $samplingSpaceSizes;
  110. }
  111. public function getSamplingSpaceSizes()
  112. {
  113. return $this->samplingSpaceSizes;
  114. }
  115. /**
  116. * @param Google_Service_AnalyticsReporting_DateRangeValues
  117. */
  118. public function setTotals($totals)
  119. {
  120. $this->totals = $totals;
  121. }
  122. /**
  123. * @return Google_Service_AnalyticsReporting_DateRangeValues
  124. */
  125. public function getTotals()
  126. {
  127. return $this->totals;
  128. }
  129. }