* $booksService = new Google\Service\Books(...); * $bookshelves = $booksService->bookshelves; * */ class MylibraryBookshelves extends \Google\Service\Resource { /** * Adds a volume to a bookshelf. (bookshelves.addVolume) * * @param string $shelf ID of bookshelf to which to add a volume. * @param string $volumeId ID of volume to add. * @param array $optParams Optional parameters. * * @opt_param string reason The reason for which the book is added to the * library. * @opt_param string source String to identify the originator of this request. * @return BooksEmpty */ public function addVolume($shelf, $volumeId, $optParams = []) { $params = ['shelf' => $shelf, 'volumeId' => $volumeId]; $params = array_merge($params, $optParams); return $this->call('addVolume', [$params], BooksEmpty::class); } /** * Clears all volumes from a bookshelf. (bookshelves.clearVolumes) * * @param string $shelf ID of bookshelf from which to remove a volume. * @param array $optParams Optional parameters. * * @opt_param string source String to identify the originator of this request. * @return BooksEmpty */ public function clearVolumes($shelf, $optParams = []) { $params = ['shelf' => $shelf]; $params = array_merge($params, $optParams); return $this->call('clearVolumes', [$params], BooksEmpty::class); } /** * Retrieves metadata for a specific bookshelf belonging to the authenticated * user. (bookshelves.get) * * @param string $shelf ID of bookshelf to retrieve. * @param array $optParams Optional parameters. * * @opt_param string source String to identify the originator of this request. * @return Bookshelf */ public function get($shelf, $optParams = []) { $params = ['shelf' => $shelf]; $params = array_merge($params, $optParams); return $this->call('get', [$params], Bookshelf::class); } /** * Retrieves a list of bookshelves belonging to the authenticated user. * (bookshelves.listMylibraryBookshelves) * * @param array $optParams Optional parameters. * * @opt_param string source String to identify the originator of this request. * @return Bookshelves */ public function listMylibraryBookshelves($optParams = []) { $params = []; $params = array_merge($params, $optParams); return $this->call('list', [$params], BookshelvesModel::class); } /** * Moves a volume within a bookshelf. (bookshelves.moveVolume) * * @param string $shelf ID of bookshelf with the volume. * @param string $volumeId ID of volume to move. * @param int $volumePosition Position on shelf to move the item (0 puts the * item before the current first item, 1 puts it between the first and the * second and so on.) * @param array $optParams Optional parameters. * * @opt_param string source String to identify the originator of this request. * @return BooksEmpty */ public function moveVolume($shelf, $volumeId, $volumePosition, $optParams = []) { $params = ['shelf' => $shelf, 'volumeId' => $volumeId, 'volumePosition' => $volumePosition]; $params = array_merge($params, $optParams); return $this->call('moveVolume', [$params], BooksEmpty::class); } /** * Removes a volume from a bookshelf. (bookshelves.removeVolume) * * @param string $shelf ID of bookshelf from which to remove a volume. * @param string $volumeId ID of volume to remove. * @param array $optParams Optional parameters. * * @opt_param string reason The reason for which the book is removed from the * library. * @opt_param string source String to identify the originator of this request. * @return BooksEmpty */ public function removeVolume($shelf, $volumeId, $optParams = []) { $params = ['shelf' => $shelf, 'volumeId' => $volumeId]; $params = array_merge($params, $optParams); return $this->call('removeVolume', [$params], BooksEmpty::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MylibraryBookshelves::class, 'Google_Service_Books_Resource_MylibraryBookshelves');