Google_Volumeannotations
The Google Pagespeed Insights Google Volumeannotations class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_BooksService.php
- class Google_Volumeannotations extends Google_Model {
- public $nextPageToken;
- protected $__itemsType = 'Google_Volumeannotation';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public $totalItems;
- public function setNextPageToken($nextPageToken) {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken() {
- return $this->nextPageToken;
- }
- public function setItems(/** array(Google_Volumeannotation) */ $items) {
- $this->assertIsArray($items, 'Google_Volumeannotation', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setTotalItems($totalItems) {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems() {
- return $this->totalItems;
- }
- }