बुकशेल्फ़
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
Bookshelf
कलेक्शन में, किताबों की अलमारी का मेटाडेटा देखने के साथ-साथ किताबों की अलमारी के कॉन्टेंट में बदलाव करने की सुविधा भी मिलती है.
संसाधनों को दिखाना
किताबों की अलमारी का संसाधन, किसी किताबों की अलमारी का मेटाडेटा दिखाता है. इसमें किताबों की अलमारी के वॉल्यूम शामिल नहीं होते.
{
"kind": "books#bookshelf",
"id": integer,
"selfLink": string,
"title": string,
"description": string,
"access": string,
"updated": datetime,
"created": datetime,
"volumeCount": integer,
"volumesLastUpdated": datetime
}
प्रॉपर्टी का नाम |
वैल्यू |
जानकारी |
ज़रूरी जानकारी |
kind |
string |
किताबों की अलमारी के मेटाडेटा के लिए संसाधन का प्रकार. |
|
id |
integer |
इस किताबों की अलमारी का आईडी. |
|
title |
string |
इस किताबों की अलमारी का नाम. |
|
description |
string |
किताबों की इस अलमारी का ब्यौरा. |
|
access |
string |
किताबों की यह अलमारी सार्वजनिक है या निजी. |
|
updated |
datetime |
इस बुकशेल्फ़ में पिछली बार बदलाव किए जाने का समय (मिलीसेकंड के रिज़ॉल्यूशन के साथ फ़ॉर्मैट किया गया यूटीसी टाइमस्टैंप). |
|
created |
datetime |
इस किताबों की अलमारी के लिए समय बनाया गया (मिलीसेकंड के रिज़ॉल्यूशन के साथ फ़ॉर्मैट किया गया यूटीसी टाइमस्टैंप). |
|
volumeCount |
integer |
इस किताबों की अलमारी में मौजूद वॉल्यूम की संख्या. |
|
volumesLastUpdated |
datetime |
पिछली बार इस बुकशेल्फ़ में किसी वॉल्यूम को जोड़ा या हटाया गया था (मिलीसेकंड के रिज़ॉल्यूशन के साथ फ़ॉर्मैट किया गया यूटीसी टाइमस्टैंप). |
|
selfLink |
string |
इस संसाधन का यूआरएल. |
|
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2024-06-28 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2024-06-28 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eThe \u003ccode\u003eBookshelf\u003c/code\u003e collection enables you to view and manage bookshelf metadata and contents.\u003c/p\u003e\n"],["\u003cp\u003ePublic methods allow access to bookshelf data without authentication, while private methods require authentication for "My Library" interactions.\u003c/p\u003e\n"],["\u003cp\u003eA Bookshelf resource represents metadata such as title, description, access level, and volume count, but it does not include the actual volumes within the bookshelf.\u003c/p\u003e\n"],["\u003cp\u003eYou can retrieve lists of bookshelves, individual bookshelf details, and modify "My Library" bookshelves using the provided methods.\u003c/p\u003e\n"]]],[],null,["# Bookshelf\n\nThe `Bookshelf` collection allows you to view bookshelf metadata as well as to modify the contents of a bookshelf.\n\nMethods\n-------\n\n\u003cbr /\u003e\n\nThe following methods apply to the public data about bookshelves and don't require authentication.\n[books.bookshelves.list](#method_books_bookshelves_list) \n[books.bookshelves.get](#method_books_bookshelves_get) \n\nThe following methods apply to the private, \"My Library\" view of bookshelves and require authentication.\n[books.mylibrary.bookshelves.list](#method_books_mylibrary_bookshelves_list) \n[books.mylibrary.bookshelves.get](#method_books_mylibrary_bookshelves_get) \n[books.mylibrary.bookshelves.addVolume](#method_books_mylibrary_bookshelves_addVolume) \n[books.mylibrary.bookshelves.removeVolume](#method_books_mylibrary_bookshelves_removeVolume) \n[books.mylibrary.bookshelves.clearVolumes](#method_books_mylibrary_bookshelves_clearVolumes)\n\n\u003cbr /\u003e\n\n[list](/books/docs/v1/reference/bookshelves/list)\n: Retrieves a list of public [Bookshelf resource](/books/docs/v1/reference/bookshelves) for the specified user.\n\n[get](/books/docs/v1/reference/bookshelves/get)\n: Retrieves a specific [Bookshelf resource](/books/docs/v1/reference/bookshelves) for the specified user.\n\nResource Representations\n------------------------\n\nA Bookshelf resource represents the metadata for a bookshelf, it does not include the volumes in the bookshelf.\n\n```text\n{\n \"kind\": \"books#bookshelf\",\n \"id\": integer,\n \"selfLink\": string,\n \"title\": string,\n \"description\": string,\n \"access\": string,\n \"updated\": datetime,\n \"created\": datetime,\n \"volumeCount\": integer,\n \"volumesLastUpdated\": datetime\n}\n```\n\n| Property Name | Value | Description | Notes |\n|----------------------|------------|--------------------------------------------------------------------------------------------------------------------|-------|\n| `kind` | `string` | Resource type for bookshelf metadata. | |\n| `id` | `integer` | ID of this bookshelf. | |\n| `title` | `string` | Title of this bookshelf. | |\n| `description` | `string` | Description of this bookshelf. | |\n| `access` | `string` | Whether this bookshelf is PUBLIC or PRIVATE. | |\n| `updated` | `datetime` | Last modified time of this bookshelf (formatted UTC timestamp with millisecond resolution). | |\n| `created` | `datetime` | Created time for this bookshelf (formatted UTC timestamp with millisecond resolution). | |\n| `volumeCount` | `integer` | Number of volumes in this bookshelf. | |\n| `volumesLastUpdated` | `datetime` | Last time a volume was added or removed from this bookshelf (formatted UTC timestamp with millisecond resolution). | |\n| `selfLink` | `string` | URL to this resource. | |"]]