Sin descripción

Query.php 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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_DoubleClickBidManager_Query extends Google_Model
  18. {
  19. public $kind;
  20. protected $metadataType = 'Google_Service_DoubleClickBidManager_QueryMetadata';
  21. protected $metadataDataType = '';
  22. protected $paramsType = 'Google_Service_DoubleClickBidManager_Parameters';
  23. protected $paramsDataType = '';
  24. public $queryId;
  25. public $reportDataEndTimeMs;
  26. public $reportDataStartTimeMs;
  27. protected $scheduleType = 'Google_Service_DoubleClickBidManager_QuerySchedule';
  28. protected $scheduleDataType = '';
  29. public $timezoneCode;
  30. public function setKind($kind)
  31. {
  32. $this->kind = $kind;
  33. }
  34. public function getKind()
  35. {
  36. return $this->kind;
  37. }
  38. /**
  39. * @param Google_Service_DoubleClickBidManager_QueryMetadata
  40. */
  41. public function setMetadata(Google_Service_DoubleClickBidManager_QueryMetadata $metadata)
  42. {
  43. $this->metadata = $metadata;
  44. }
  45. /**
  46. * @return Google_Service_DoubleClickBidManager_QueryMetadata
  47. */
  48. public function getMetadata()
  49. {
  50. return $this->metadata;
  51. }
  52. /**
  53. * @param Google_Service_DoubleClickBidManager_Parameters
  54. */
  55. public function setParams(Google_Service_DoubleClickBidManager_Parameters $params)
  56. {
  57. $this->params = $params;
  58. }
  59. /**
  60. * @return Google_Service_DoubleClickBidManager_Parameters
  61. */
  62. public function getParams()
  63. {
  64. return $this->params;
  65. }
  66. public function setQueryId($queryId)
  67. {
  68. $this->queryId = $queryId;
  69. }
  70. public function getQueryId()
  71. {
  72. return $this->queryId;
  73. }
  74. public function setReportDataEndTimeMs($reportDataEndTimeMs)
  75. {
  76. $this->reportDataEndTimeMs = $reportDataEndTimeMs;
  77. }
  78. public function getReportDataEndTimeMs()
  79. {
  80. return $this->reportDataEndTimeMs;
  81. }
  82. public function setReportDataStartTimeMs($reportDataStartTimeMs)
  83. {
  84. $this->reportDataStartTimeMs = $reportDataStartTimeMs;
  85. }
  86. public function getReportDataStartTimeMs()
  87. {
  88. return $this->reportDataStartTimeMs;
  89. }
  90. /**
  91. * @param Google_Service_DoubleClickBidManager_QuerySchedule
  92. */
  93. public function setSchedule(Google_Service_DoubleClickBidManager_QuerySchedule $schedule)
  94. {
  95. $this->schedule = $schedule;
  96. }
  97. /**
  98. * @return Google_Service_DoubleClickBidManager_QuerySchedule
  99. */
  100. public function getSchedule()
  101. {
  102. return $this->schedule;
  103. }
  104. public function setTimezoneCode($timezoneCode)
  105. {
  106. $this->timezoneCode = $timezoneCode;
  107. }
  108. public function getTimezoneCode()
  109. {
  110. return $this->timezoneCode;
  111. }
  112. }