Google_Volumeannotation
The Google Pagespeed Insights Google Volumeannotation class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_BooksService.php
- class Google_Volumeannotation extends Google_Model {
- public $annotationType;
- public $kind;
- public $updated;
- public $deleted;
- protected $__contentRangesType = 'Google_VolumeannotationContentRanges';
- protected $__contentRangesDataType = '';
- public $contentRanges;
- public $selectedText;
- public $volumeId;
- public $annotationDataId;
- public $annotationDataLink;
- public $pageIds;
- public $layerId;
- public $data;
- public $id;
- public $selfLink;
- public function setAnnotationType($annotationType) {
- $this->annotationType = $annotationType;
- }
- public function getAnnotationType() {
- return $this->annotationType;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setUpdated($updated) {
- $this->updated = $updated;
- }
- public function getUpdated() {
- return $this->updated;
- }
- public function setDeleted($deleted) {
- $this->deleted = $deleted;
- }
- public function getDeleted() {
- return $this->deleted;
- }
- public function setContentRanges(Google_VolumeannotationContentRanges $contentRanges) {
- $this->contentRanges = $contentRanges;
- }
- public function getContentRanges() {
- return $this->contentRanges;
- }
- public function setSelectedText($selectedText) {
- $this->selectedText = $selectedText;
- }
- public function getSelectedText() {
- return $this->selectedText;
- }
- public function setVolumeId($volumeId) {
- $this->volumeId = $volumeId;
- }
- public function getVolumeId() {
- return $this->volumeId;
- }
- public function setAnnotationDataId($annotationDataId) {
- $this->annotationDataId = $annotationDataId;
- }
- public function getAnnotationDataId() {
- return $this->annotationDataId;
- }
- public function setAnnotationDataLink($annotationDataLink) {
- $this->annotationDataLink = $annotationDataLink;
- }
- public function getAnnotationDataLink() {
- return $this->annotationDataLink;
- }
- public function setPageIds(/** array(Google_string) */ $pageIds) {
- $this->assertIsArray($pageIds, 'Google_string', __METHOD__);
- $this->pageIds = $pageIds;
- }
- public function getPageIds() {
- return $this->pageIds;
- }
- public function setLayerId($layerId) {
- $this->layerId = $layerId;
- }
- public function getLayerId() {
- return $this->layerId;
- }
- public function setData($data) {
- $this->data = $data;
- }
- public function getData() {
- return $this->data;
- }
- public function setId($id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setSelfLink($selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- }