Keine Beschreibung

Mute.php 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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_Reportcard_Mute extends Google_Collection
  18. {
  19. protected $collection_key = 'tag';
  20. public $consumer;
  21. public $createdBy;
  22. public $creationTimeMs;
  23. public $creator;
  24. public $expiryTimeMs;
  25. public $groupKey;
  26. public $id;
  27. public $kind;
  28. public $reason;
  29. public $sourceKey;
  30. public $tag;
  31. protected $targetType = 'Google_Service_Reportcard_Target';
  32. protected $targetDataType = '';
  33. public $text;
  34. public function setConsumer($consumer)
  35. {
  36. $this->consumer = $consumer;
  37. }
  38. public function getConsumer()
  39. {
  40. return $this->consumer;
  41. }
  42. public function setCreatedBy($createdBy)
  43. {
  44. $this->createdBy = $createdBy;
  45. }
  46. public function getCreatedBy()
  47. {
  48. return $this->createdBy;
  49. }
  50. public function setCreationTimeMs($creationTimeMs)
  51. {
  52. $this->creationTimeMs = $creationTimeMs;
  53. }
  54. public function getCreationTimeMs()
  55. {
  56. return $this->creationTimeMs;
  57. }
  58. public function setCreator($creator)
  59. {
  60. $this->creator = $creator;
  61. }
  62. public function getCreator()
  63. {
  64. return $this->creator;
  65. }
  66. public function setExpiryTimeMs($expiryTimeMs)
  67. {
  68. $this->expiryTimeMs = $expiryTimeMs;
  69. }
  70. public function getExpiryTimeMs()
  71. {
  72. return $this->expiryTimeMs;
  73. }
  74. public function setGroupKey($groupKey)
  75. {
  76. $this->groupKey = $groupKey;
  77. }
  78. public function getGroupKey()
  79. {
  80. return $this->groupKey;
  81. }
  82. public function setId($id)
  83. {
  84. $this->id = $id;
  85. }
  86. public function getId()
  87. {
  88. return $this->id;
  89. }
  90. public function setKind($kind)
  91. {
  92. $this->kind = $kind;
  93. }
  94. public function getKind()
  95. {
  96. return $this->kind;
  97. }
  98. public function setReason($reason)
  99. {
  100. $this->reason = $reason;
  101. }
  102. public function getReason()
  103. {
  104. return $this->reason;
  105. }
  106. public function setSourceKey($sourceKey)
  107. {
  108. $this->sourceKey = $sourceKey;
  109. }
  110. public function getSourceKey()
  111. {
  112. return $this->sourceKey;
  113. }
  114. public function setTag($tag)
  115. {
  116. $this->tag = $tag;
  117. }
  118. public function getTag()
  119. {
  120. return $this->tag;
  121. }
  122. public function setTarget(Google_Service_Reportcard_Target $target)
  123. {
  124. $this->target = $target;
  125. }
  126. public function getTarget()
  127. {
  128. return $this->target;
  129. }
  130. public function setText($text)
  131. {
  132. $this->text = $text;
  133. }
  134. public function getText()
  135. {
  136. return $this->text;
  137. }
  138. }