items = $items; } /** * @return Volume[] */ public function getItems() { return $this->items; } /** * Resource type. * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * Total number of volumes found. This might be greater than the number of * volumes returned in this response if results have been paginated. * * @param int $totalItems */ public function setTotalItems($totalItems) { $this->totalItems = $totalItems; } /** * @return int */ public function getTotalItems() { return $this->totalItems; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Volumes::class, 'Google_Service_Books_Volumes');