Ei kuvausta

Volumeannotation.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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_Books_Volumeannotation extends Google_Collection
  18. {
  19. protected $collection_key = 'pageIds';
  20. public $annotationDataId;
  21. public $annotationDataLink;
  22. public $annotationType;
  23. protected $contentRangesType = 'Google_Service_Books_VolumeannotationContentRanges';
  24. protected $contentRangesDataType = '';
  25. public $data;
  26. public $deleted;
  27. public $id;
  28. public $kind;
  29. public $layerId;
  30. public $pageIds;
  31. public $selectedText;
  32. public $selfLink;
  33. public $updated;
  34. public $volumeId;
  35. public function setAnnotationDataId($annotationDataId)
  36. {
  37. $this->annotationDataId = $annotationDataId;
  38. }
  39. public function getAnnotationDataId()
  40. {
  41. return $this->annotationDataId;
  42. }
  43. public function setAnnotationDataLink($annotationDataLink)
  44. {
  45. $this->annotationDataLink = $annotationDataLink;
  46. }
  47. public function getAnnotationDataLink()
  48. {
  49. return $this->annotationDataLink;
  50. }
  51. public function setAnnotationType($annotationType)
  52. {
  53. $this->annotationType = $annotationType;
  54. }
  55. public function getAnnotationType()
  56. {
  57. return $this->annotationType;
  58. }
  59. /**
  60. * @param Google_Service_Books_VolumeannotationContentRanges
  61. */
  62. public function setContentRanges(Google_Service_Books_VolumeannotationContentRanges $contentRanges)
  63. {
  64. $this->contentRanges = $contentRanges;
  65. }
  66. /**
  67. * @return Google_Service_Books_VolumeannotationContentRanges
  68. */
  69. public function getContentRanges()
  70. {
  71. return $this->contentRanges;
  72. }
  73. public function setData($data)
  74. {
  75. $this->data = $data;
  76. }
  77. public function getData()
  78. {
  79. return $this->data;
  80. }
  81. public function setDeleted($deleted)
  82. {
  83. $this->deleted = $deleted;
  84. }
  85. public function getDeleted()
  86. {
  87. return $this->deleted;
  88. }
  89. public function setId($id)
  90. {
  91. $this->id = $id;
  92. }
  93. public function getId()
  94. {
  95. return $this->id;
  96. }
  97. public function setKind($kind)
  98. {
  99. $this->kind = $kind;
  100. }
  101. public function getKind()
  102. {
  103. return $this->kind;
  104. }
  105. public function setLayerId($layerId)
  106. {
  107. $this->layerId = $layerId;
  108. }
  109. public function getLayerId()
  110. {
  111. return $this->layerId;
  112. }
  113. public function setPageIds($pageIds)
  114. {
  115. $this->pageIds = $pageIds;
  116. }
  117. public function getPageIds()
  118. {
  119. return $this->pageIds;
  120. }
  121. public function setSelectedText($selectedText)
  122. {
  123. $this->selectedText = $selectedText;
  124. }
  125. public function getSelectedText()
  126. {
  127. return $this->selectedText;
  128. }
  129. public function setSelfLink($selfLink)
  130. {
  131. $this->selfLink = $selfLink;
  132. }
  133. public function getSelfLink()
  134. {
  135. return $this->selfLink;
  136. }
  137. public function setUpdated($updated)
  138. {
  139. $this->updated = $updated;
  140. }
  141. public function getUpdated()
  142. {
  143. return $this->updated;
  144. }
  145. public function setVolumeId($volumeId)
  146. {
  147. $this->volumeId = $volumeId;
  148. }
  149. public function getVolumeId()
  150. {
  151. return $this->volumeId;
  152. }
  153. }