Geen omschrijving

ReportSchedule.php 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_Dfareporting_ReportSchedule extends Google_Collection
  18. {
  19. protected $collection_key = 'repeatsOnWeekDays';
  20. public $active;
  21. public $every;
  22. public $expirationDate;
  23. public $repeats;
  24. public $repeatsOnWeekDays;
  25. public $runsOnDayOfMonth;
  26. public $startDate;
  27. public function setActive($active)
  28. {
  29. $this->active = $active;
  30. }
  31. public function getActive()
  32. {
  33. return $this->active;
  34. }
  35. public function setEvery($every)
  36. {
  37. $this->every = $every;
  38. }
  39. public function getEvery()
  40. {
  41. return $this->every;
  42. }
  43. public function setExpirationDate($expirationDate)
  44. {
  45. $this->expirationDate = $expirationDate;
  46. }
  47. public function getExpirationDate()
  48. {
  49. return $this->expirationDate;
  50. }
  51. public function setRepeats($repeats)
  52. {
  53. $this->repeats = $repeats;
  54. }
  55. public function getRepeats()
  56. {
  57. return $this->repeats;
  58. }
  59. public function setRepeatsOnWeekDays($repeatsOnWeekDays)
  60. {
  61. $this->repeatsOnWeekDays = $repeatsOnWeekDays;
  62. }
  63. public function getRepeatsOnWeekDays()
  64. {
  65. return $this->repeatsOnWeekDays;
  66. }
  67. public function setRunsOnDayOfMonth($runsOnDayOfMonth)
  68. {
  69. $this->runsOnDayOfMonth = $runsOnDayOfMonth;
  70. }
  71. public function getRunsOnDayOfMonth()
  72. {
  73. return $this->runsOnDayOfMonth;
  74. }
  75. public function setStartDate($startDate)
  76. {
  77. $this->startDate = $startDate;
  78. }
  79. public function getStartDate()
  80. {
  81. return $this->startDate;
  82. }
  83. }