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