Lines Matching full:book
79 …lass="firstline">Borrow a book from the library. Returns the book if it is borrowed successfully. …
85 <p class="firstline">Gets a book. Returns NOT_FOUND if the book does not exist.</p>
94 …"firstline">Return a book to the library. Returns the book if it is returned to the library succes…
98 …<pre>Borrow a book from the library. Returns the book if it is borrowed successfully. Returns NOT_…
101 name: string, Required. The name of the book to borrow. (required)
110 { # A single book in the library.
111 "author": "A String", # The name of the book author.
112 … resource name of the book. Book names have the form `shelves/{shelf_id}/books/{book_id}`. The nam…
113 "read": True or False, # Value indicating whether the book has been read.
114 "title": "A String", # The title of the book.
125 <pre>Gets a book. Returns NOT_FOUND if the book does not exist.
128 name: string, Required. The name of the book to retrieve. (required)
137 { # A single book in the library.
138 "author": "A String", # The name of the book author.
139 … resource name of the book. Book names have the form `shelves/{shelf_id}/books/{book_id}`. The nam…
140 "read": True or False, # Value indicating whether the book has been read.
141 "title": "A String", # The title of the book.
163 { # A single book in the library.
164 "author": "A String", # The name of the book author.
165 … resource name of the book. Book names have the form `shelves/{shelf_id}/books/{book_id}`. The nam…
166 "read": True or False, # Value indicating whether the book has been read.
167 "title": "A String", # The title of the book.
190 …<pre>Return a book to the library. Returns the book if it is returned to the library successfully.…
193 name: string, Required. The name of the book to return. (required)
202 { # A single book in the library.
203 "author": "A String", # The name of the book author.
204 … resource name of the book. Book names have the form `shelves/{shelf_id}/books/{book_id}`. The nam…
205 "read": True or False, # Value indicating whether the book has been read.
206 "title": "A String", # The title of the book.