/var/www/flurhymez/vendor/google/apiclient-services/src/Books/Resource
NameSizeModeActions
Bookshelves.php23530644editdlrm
BookshelvesVolumes.php20450644editdlrm
Cloudloading.php28420644editdlrm
Dictionary.php15870644editdlrm
Familysharing.php28070644editdlrm
Layers.php25910644editdlrm
LayersAnnotationData.php44700644editdlrm
LayersVolumeAnnotations.php40590644editdlrm
Myconfig.php54060644editdlrm
Mylibrary.php10400644editdlrm
MylibraryAnnotations.php50390644editdlrm
MylibraryBookshelves.php50260644editdlrm
MylibraryBookshelvesVolumes.php22320644editdlrm
MylibraryReadingpositions.php30050644editdlrm
Notification.php18360644editdlrm
Onboarding.php25340644editdlrm
Personalizedstream.php18910644editdlrm
Promooffer.php31110644editdlrm
Series.php15100644editdlrm
SeriesMembership.php17920644editdlrm
Volumes.php35270644editdlrm
VolumesAssociated.php20130644editdlrm
VolumesMybooks.php21570644editdlrm
VolumesRecommended.php27550644editdlrm
VolumesUseruploaded.php21480644editdlrm
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/Books/Resource/MylibraryBookshelves.php (5026B)
* $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');