Bez popisu

Comment.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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_PlusDomains_Comment extends Google_Collection
  18. {
  19. protected $collection_key = 'inReplyTo';
  20. protected $actorType = 'Google_Service_PlusDomains_CommentActor';
  21. protected $actorDataType = '';
  22. public $etag;
  23. public $id;
  24. protected $inReplyToType = 'Google_Service_PlusDomains_CommentInReplyTo';
  25. protected $inReplyToDataType = 'array';
  26. public $kind;
  27. protected $objectType = 'Google_Service_PlusDomains_CommentObject';
  28. protected $objectDataType = '';
  29. protected $plusonersType = 'Google_Service_PlusDomains_CommentPlusoners';
  30. protected $plusonersDataType = '';
  31. public $published;
  32. public $selfLink;
  33. public $updated;
  34. public $verb;
  35. /**
  36. * @param Google_Service_PlusDomains_CommentActor
  37. */
  38. public function setActor(Google_Service_PlusDomains_CommentActor $actor)
  39. {
  40. $this->actor = $actor;
  41. }
  42. /**
  43. * @return Google_Service_PlusDomains_CommentActor
  44. */
  45. public function getActor()
  46. {
  47. return $this->actor;
  48. }
  49. public function setEtag($etag)
  50. {
  51. $this->etag = $etag;
  52. }
  53. public function getEtag()
  54. {
  55. return $this->etag;
  56. }
  57. public function setId($id)
  58. {
  59. $this->id = $id;
  60. }
  61. public function getId()
  62. {
  63. return $this->id;
  64. }
  65. /**
  66. * @param Google_Service_PlusDomains_CommentInReplyTo
  67. */
  68. public function setInReplyTo($inReplyTo)
  69. {
  70. $this->inReplyTo = $inReplyTo;
  71. }
  72. /**
  73. * @return Google_Service_PlusDomains_CommentInReplyTo
  74. */
  75. public function getInReplyTo()
  76. {
  77. return $this->inReplyTo;
  78. }
  79. public function setKind($kind)
  80. {
  81. $this->kind = $kind;
  82. }
  83. public function getKind()
  84. {
  85. return $this->kind;
  86. }
  87. /**
  88. * @param Google_Service_PlusDomains_CommentObject
  89. */
  90. public function setObject(Google_Service_PlusDomains_CommentObject $object)
  91. {
  92. $this->object = $object;
  93. }
  94. /**
  95. * @return Google_Service_PlusDomains_CommentObject
  96. */
  97. public function getObject()
  98. {
  99. return $this->object;
  100. }
  101. /**
  102. * @param Google_Service_PlusDomains_CommentPlusoners
  103. */
  104. public function setPlusoners(Google_Service_PlusDomains_CommentPlusoners $plusoners)
  105. {
  106. $this->plusoners = $plusoners;
  107. }
  108. /**
  109. * @return Google_Service_PlusDomains_CommentPlusoners
  110. */
  111. public function getPlusoners()
  112. {
  113. return $this->plusoners;
  114. }
  115. public function setPublished($published)
  116. {
  117. $this->published = $published;
  118. }
  119. public function getPublished()
  120. {
  121. return $this->published;
  122. }
  123. public function setSelfLink($selfLink)
  124. {
  125. $this->selfLink = $selfLink;
  126. }
  127. public function getSelfLink()
  128. {
  129. return $this->selfLink;
  130. }
  131. public function setUpdated($updated)
  132. {
  133. $this->updated = $updated;
  134. }
  135. public function getUpdated()
  136. {
  137. return $this->updated;
  138. }
  139. public function setVerb($verb)
  140. {
  141. $this->verb = $verb;
  142. }
  143. public function getVerb()
  144. {
  145. return $this->verb;
  146. }
  147. }