blob: 29c8e820703178fcd1dcf6424da02f29b504945d [file] [log] [blame]
John Asmuth614db982014-04-24 15:46:26 -04001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="books_v1.html">Books API</a> . <a href="books_v1.volumes.html">volumes</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="books_v1.volumes.associated.html">associated()</a></code>
79</p>
80<p class="firstline">Returns the associated Resource.</p>
81
82<p class="toc_element">
83 <code><a href="books_v1.volumes.mybooks.html">mybooks()</a></code>
84</p>
85<p class="firstline">Returns the mybooks Resource.</p>
86
87<p class="toc_element">
88 <code><a href="books_v1.volumes.recommended.html">recommended()</a></code>
89</p>
90<p class="firstline">Returns the recommended Resource.</p>
91
92<p class="toc_element">
93 <code><a href="books_v1.volumes.useruploaded.html">useruploaded()</a></code>
94</p>
95<p class="firstline">Returns the useruploaded Resource.</p>
96
97<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070098 <code><a href="#close">close()</a></code></p>
99<p class="firstline">Close httplib2 connections.</p>
100<p class="toc_element">
101 <code><a href="#get">get(volumeId, user_library_consistent_read=None, partner=None, source=None, country=None, projection=None, includeNonComicsSeries=None, x__xgafv=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -0400102<p class="firstline">Gets volume information for a single volume.</p>
103<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700104 <code><a href="#list">list(orderBy=None, startIndex=None, partner=None, printType=None, libraryRestrict=None, maxAllowedMaturityRating=None, showPreorders=None, projection=None, source=None, q=None, maxResults=None, filter=None, langRestrict=None, download=None, x__xgafv=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -0400105<p class="firstline">Performs a book search.</p>
106<h3>Method Details</h3>
107<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700108 <code class="details" id="close">close()</code>
109 <pre>Close httplib2 connections.</pre>
110</div>
111
112<div class="method">
113 <code class="details" id="get">get(volumeId, user_library_consistent_read=None, partner=None, source=None, country=None, projection=None, includeNonComicsSeries=None, x__xgafv=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400114 <pre>Gets volume information for a single volume.
115
116Args:
117 volumeId: string, ID of volume to retrieve. (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700118 user_library_consistent_read: boolean, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700119 partner: string, Brand results for partner ID.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700120 source: string, string to identify the originator of this request.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700121 country: string, ISO-3166-1 code to override the IP-based location.
John Asmuth614db982014-04-24 15:46:26 -0400122 projection: string, Restrict information returned to a set of selected fields.
123 Allowed values
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700124 PROJECTION_UNDEFINED -
125 FULL - Includes all volume data.
126 LITE - Includes a subset of fields in volumeInfo and accessInfo.
127 includeNonComicsSeries: boolean, Set to true to include non-comics series. Defaults to false.
128 x__xgafv: string, V1 error format.
129 Allowed values
130 1 - v1 error format
131 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400132
133Returns:
134 An object of the form:
135
136 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700137 &quot;userInfo&quot;: { # User specific information related to this volume. (e.g. page this user last read or whether they purchased this book)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700138 &quot;userUploadedVolumeInfo&quot;: {
139 &quot;processingState&quot;: &quot;A String&quot;,
140 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700141 &quot;readingPosition&quot;: { # The user&#x27;s current reading position in the volume, if one is available. (In LITE projection.)
142 &quot;pdfPosition&quot;: &quot;A String&quot;, # Position in a PDF file.
143 &quot;kind&quot;: &quot;A String&quot;, # Resource type for a reading position.
144 &quot;gbTextPosition&quot;: &quot;A String&quot;, # Position in a volume for text-based content.
145 &quot;updated&quot;: &quot;A String&quot;, # Timestamp when this reading position was last updated (formatted UTC timestamp with millisecond resolution).
146 &quot;gbImagePosition&quot;: &quot;A String&quot;, # Position in a volume for image-based content.
147 &quot;volumeId&quot;: &quot;A String&quot;, # Volume id associated with this reading position.
148 &quot;epubCfiPosition&quot;: &quot;A String&quot;, # Position in an EPUB as a CFI.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700149 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700150 &quot;rentalPeriod&quot;: { # Period during this book is/was a valid rental.
151 &quot;startUtcSec&quot;: &quot;A String&quot;,
152 &quot;endUtcSec&quot;: &quot;A String&quot;,
153 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700154 &quot;isFamilySharingDisabledByFop&quot;: True or False, # Deprecated: Replaced by familySharing.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700155 &quot;isInMyBooks&quot;: True or False, # Whether or not this volume is currently in &quot;my books.&quot;
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700156 &quot;entitlementType&quot;: 42, # Whether this volume is purchased, sample, pd download etc.
157 &quot;isFamilySharedToUser&quot;: True or False, # Whether or not the user received this volume through family sharing.
158 &quot;familySharing&quot;: { # Information on the ability to share with the family.
159 &quot;isSharingAllowed&quot;: True or False, # Whether or not this volume can be shared with the family by the user. This includes sharing eligibility of both the volume and the user. If the value is true, the user can initiate a family sharing action.
160 &quot;familyRole&quot;: &quot;A String&quot;, # The role of the user in the family.
161 &quot;isSharingDisabledByFop&quot;: True or False, # Whether or not sharing this volume is temporarily disabled due to issues with the Family Wallet.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700162 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700163 &quot;acquisitionType&quot;: 42, # How this volume was acquired.
164 &quot;review&quot;: { # This user&#x27;s review of this volume, if one exists.
165 &quot;fullTextUrl&quot;: &quot;A String&quot;, # URL for the full review text, for reviews gathered from the web.
166 &quot;content&quot;: &quot;A String&quot;, # Review text.
167 &quot;title&quot;: &quot;A String&quot;, # Title for this review.
168 &quot;type&quot;: &quot;A String&quot;, # Source type for this review. Possible values are EDITORIAL, WEB_USER or GOOGLE_USER.
169 &quot;source&quot;: { # Information regarding the source of this review, when the review is not from a Google Books user.
170 &quot;url&quot;: &quot;A String&quot;, # URL of the source of the review.
171 &quot;extraDescription&quot;: &quot;A String&quot;, # Extra text about the source of the review.
172 &quot;description&quot;: &quot;A String&quot;, # Name of the source.
Bu Sun Kim65020912020-05-20 12:08:20 -0700173 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700174 &quot;rating&quot;: &quot;A String&quot;, # Star rating for this review. Possible values are ONE, TWO, THREE, FOUR, FIVE or NOT_RATED.
175 &quot;kind&quot;: &quot;A String&quot;, # Resource type for a review.
176 &quot;volumeId&quot;: &quot;A String&quot;, # Volume that this review is for.
177 &quot;author&quot;: { # Author of this review.
178 &quot;displayName&quot;: &quot;A String&quot;, # Name of this person.
179 },
180 &quot;date&quot;: &quot;A String&quot;, # Date of this review.
John Asmuth614db982014-04-24 15:46:26 -0400181 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700182 &quot;isPreordered&quot;: True or False, # Whether or not this volume was pre-ordered by the authenticated user making the request. (In LITE projection.)
183 &quot;isPurchased&quot;: True or False, # Whether or not this volume was purchased by the authenticated user making the request. (In LITE projection.)
184 &quot;isFamilySharingAllowed&quot;: True or False, # Deprecated: Replaced by familySharing.
185 &quot;updated&quot;: &quot;A String&quot;, # Timestamp when this volume was last modified by a user action, such as a reading position update, volume purchase or writing a review. (RFC 3339 UTC date-time format).
186 &quot;rentalState&quot;: &quot;A String&quot;, # Whether this book is an active or an expired rental.
187 &quot;isUploaded&quot;: True or False, # Whether or not this volume was user uploaded.
188 &quot;copy&quot;: { # Copy/Paste accounting information.
189 &quot;remainingCharacterCount&quot;: 42,
190 &quot;limitType&quot;: &quot;A String&quot;,
191 &quot;allowedCharacterCount&quot;: 42,
192 &quot;updated&quot;: &quot;A String&quot;,
193 },
194 &quot;acquiredTime&quot;: &quot;A String&quot;, # Timestamp when this volume was acquired by the user. (RFC 3339 UTC date-time format) Acquiring includes purchase, user upload, receiving family sharing, etc.
195 &quot;isFamilySharedFromUser&quot;: True or False, # Whether or not the user shared this volume with the family.
John Asmuth614db982014-04-24 15:46:26 -0400196 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700197 &quot;kind&quot;: &quot;A String&quot;, # Resource type for a volume. (In LITE projection.)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700198 &quot;etag&quot;: &quot;A String&quot;, # Opaque identifier for a specific version of a volume resource. (In LITE projection)
Bu Sun Kim65020912020-05-20 12:08:20 -0700199 &quot;volumeInfo&quot;: { # General volume information.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700200 &quot;averageRating&quot;: 3.14, # The mean review rating for this volume. (min = 1.0, max = 5.0)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700201 &quot;infoLink&quot;: &quot;A String&quot;, # URL to view information about this volume on the Google Books site. (In LITE projection)
202 &quot;printType&quot;: &quot;A String&quot;, # Type of publication of this volume. Possible values are BOOK or MAGAZINE.
203 &quot;categories&quot;: [ # A list of subject categories, such as &quot;Fiction&quot;, &quot;Suspense&quot;, etc.
204 &quot;A String&quot;,
205 ],
206 &quot;title&quot;: &quot;A String&quot;, # Volume title. (In LITE projection.)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700207 &quot;imageLinks&quot;: { # A list of image links for all the sizes that are available. (In LITE projection.)
208 &quot;smallThumbnail&quot;: &quot;A String&quot;, # Image link for small thumbnail size (width of ~80 pixels). (In LITE projection)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700209 &quot;thumbnail&quot;: &quot;A String&quot;, # Image link for thumbnail size (width of ~128 pixels). (In LITE projection)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700210 &quot;small&quot;: &quot;A String&quot;, # Image link for small size (width of ~300 pixels). (In LITE projection)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700211 &quot;extraLarge&quot;: &quot;A String&quot;, # Image link for extra large size (width of ~1280 pixels). (In LITE projection)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700212 &quot;medium&quot;: &quot;A String&quot;, # Image link for medium size (width of ~575 pixels). (In LITE projection)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700213 &quot;large&quot;: &quot;A String&quot;, # Image link for large size (width of ~800 pixels). (In LITE projection)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700214 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700215 &quot;contentVersion&quot;: &quot;A String&quot;, # An identifier for the version of the volume content (text &amp; images). (In LITE projection)
216 &quot;previewLink&quot;: &quot;A String&quot;, # URL to preview this volume on the Google Books site.
217 &quot;panelizationSummary&quot;: { # A top-level summary of the panelization info in this volume.
218 &quot;epubBubbleVersion&quot;: &quot;A String&quot;,
219 &quot;containsImageBubbles&quot;: True or False,
220 &quot;containsEpubBubbles&quot;: True or False,
221 &quot;imageBubbleVersion&quot;: &quot;A String&quot;,
222 },
223 &quot;maturityRating&quot;: &quot;A String&quot;,
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700224 &quot;seriesInfo&quot;: {
225 &quot;shortSeriesBookTitle&quot;: &quot;A String&quot;, # Short book title in the context of the series.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700226 &quot;volumeSeries&quot;: [
227 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700228 &quot;orderNumber&quot;: 42, # The book order number in the series.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700229 &quot;seriesBookType&quot;: &quot;A String&quot;, # The book type in the context of series. Examples - Single Issue, Collection Edition, etc.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700230 &quot;seriesId&quot;: &quot;A String&quot;, # The series id.
231 &quot;issue&quot;: [ # List of issues. Applicable only for Collection Edition and Omnibus.
232 {
233 &quot;issueOrderNumber&quot;: 42,
234 &quot;issueDisplayNumber&quot;: &quot;A String&quot;,
235 },
236 ],
237 },
238 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700239 &quot;bookDisplayNumber&quot;: &quot;A String&quot;, # The display number string. This should be used only for display purposes and the actual sequence should be inferred from the below orderNumber.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700240 &quot;kind&quot;: &quot;A String&quot;, # Resource type.
241 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700242 &quot;readingModes&quot;: { # The reading modes available for this volume.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700243 &quot;text&quot;: True or False,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700244 &quot;image&quot;: True or False,
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700245 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700246 &quot;dimensions&quot;: { # Physical dimensions of this volume.
247 &quot;height&quot;: &quot;A String&quot;, # Height or length of this volume (in cm).
248 &quot;thickness&quot;: &quot;A String&quot;, # Thickness of this volume (in cm).
249 &quot;width&quot;: &quot;A String&quot;, # Width of this volume (in cm).
250 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700251 &quot;comicsContent&quot;: True or False, # Whether the volume has comics content.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700252 &quot;allowAnonLogging&quot;: True or False, # Whether anonymous logging should be allowed.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700253 &quot;industryIdentifiers&quot;: [ # Industry standard identifiers for this volume.
254 {
255 &quot;type&quot;: &quot;A String&quot;, # Identifier type. Possible values are ISBN_10, ISBN_13, ISSN and OTHER.
256 &quot;identifier&quot;: &quot;A String&quot;, # Industry specific volume identifier.
257 },
258 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700259 &quot;ratingsCount&quot;: 42, # The number of review ratings for this volume.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700260 &quot;language&quot;: &quot;A String&quot;, # Best language for this volume (based on content). It is the two-letter ISO 639-1 code such as &#x27;fr&#x27;, &#x27;en&#x27;, etc.
261 &quot;publishedDate&quot;: &quot;A String&quot;, # Date of publication. (In LITE projection.)
262 &quot;samplePageCount&quot;: 42, # Total number of sample pages as per publisher metadata.
263 &quot;canonicalVolumeLink&quot;: &quot;A String&quot;, # Canonical URL for a volume. (In LITE projection.)
264 &quot;publisher&quot;: &quot;A String&quot;, # Publisher of this volume. (In LITE projection.)
265 &quot;authors&quot;: [ # The names of the authors and/or editors for this volume. (In LITE projection)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700266 &quot;A String&quot;,
267 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700268 &quot;subtitle&quot;: &quot;A String&quot;, # Volume subtitle. (In LITE projection.)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700269 &quot;description&quot;: &quot;A String&quot;, # A synopsis of the volume. The text of the description is formatted in HTML and includes simple formatting elements, such as b, i, and br tags. (In LITE projection.)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700270 &quot;printedPageCount&quot;: 42, # Total number of printed pages in generated pdf representation.
271 &quot;pageCount&quot;: 42, # Total number of pages as per publisher metadata.
272 &quot;mainCategory&quot;: &quot;A String&quot;, # The main category to which this volume belongs. It will be the category from the categories list returned below that has the highest weight.
273 },
274 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for a volume. (In LITE projection.)
275 &quot;recommendedInfo&quot;: { # Recommendation related information for this volume.
276 &quot;explanation&quot;: &quot;A String&quot;, # A text explaining why this volume is recommended.
277 },
278 &quot;searchInfo&quot;: { # Search result information related to this volume.
279 &quot;textSnippet&quot;: &quot;A String&quot;, # A text snippet containing the search query.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700280 },
281 &quot;layerInfo&quot;: { # What layers exist in this volume and high level information about them.
282 &quot;layers&quot;: [ # A layer should appear here if and only if the layer exists for this book.
283 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700284 &quot;layerId&quot;: &quot;A String&quot;, # The layer id of this layer (e.g. &quot;geo&quot;).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700285 &quot;volumeAnnotationsVersion&quot;: &quot;A String&quot;, # The current version of this layer&#x27;s volume annotations. Note that this version applies only to the data in the books.layers.volumeAnnotations.* responses. The actual annotation data is versioned separately.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700286 },
287 ],
John Asmuth614db982014-04-24 15:46:26 -0400288 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700289 &quot;saleInfo&quot;: { # Any information about a volume related to the eBookstore and/or purchaseability. This information can depend on the country where the request originates from (i.e. books may not be for sale in certain countries).
290 &quot;country&quot;: &quot;A String&quot;, # The two-letter ISO_3166-1 country code for which this sale information is valid. (In LITE projection.)
291 &quot;retailPrice&quot;: { # The actual selling price of the book. This is the same as the suggested retail or list price unless there are offers or discounts on this volume. (In LITE projection.)
292 &quot;currencyCode&quot;: &quot;A String&quot;, # An ISO 4217, three-letter currency code. (In LITE projection.)
293 &quot;amount&quot;: 3.14, # Amount in the currency listed below. (In LITE projection.)
294 },
295 &quot;isEbook&quot;: True or False, # Whether or not this volume is an eBook (can be added to the My eBooks shelf).
296 &quot;onSaleDate&quot;: &quot;A String&quot;, # The date on which this book is available for sale.
297 &quot;offers&quot;: [ # Offers available for this volume (sales and rentals).
298 {
299 &quot;giftable&quot;: True or False, # Indicates whether the offer is giftable.
300 &quot;rentalDuration&quot;: { # The rental duration (for rental offers only).
301 &quot;count&quot;: 3.14,
302 &quot;unit&quot;: &quot;A String&quot;,
303 },
304 &quot;finskyOfferType&quot;: 42, # The finsky offer type (e.g., PURCHASE=0 RENTAL=3)
305 &quot;listPrice&quot;: { # Offer list (=undiscounted) price in Micros.
306 &quot;amountInMicros&quot;: 3.14,
307 &quot;currencyCode&quot;: &quot;A String&quot;,
308 },
309 &quot;retailPrice&quot;: { # Offer retail (=discounted) price in Micros
310 &quot;currencyCode&quot;: &quot;A String&quot;,
311 &quot;amountInMicros&quot;: 3.14,
312 },
313 },
314 ],
315 &quot;listPrice&quot;: { # Suggested retail price. (In LITE projection.)
316 &quot;amount&quot;: 3.14, # Amount in the currency listed below. (In LITE projection.)
317 &quot;currencyCode&quot;: &quot;A String&quot;, # An ISO 4217, three-letter currency code. (In LITE projection.)
318 },
319 &quot;buyLink&quot;: &quot;A String&quot;, # URL to purchase this volume on the Google Books site. (In LITE projection)
320 &quot;saleability&quot;: &quot;A String&quot;, # Whether or not this book is available for sale or offered for free in the Google eBookstore for the country listed above. Possible values are FOR_SALE, FOR_RENTAL_ONLY, FOR_SALE_AND_RENTAL, FREE, NOT_FOR_SALE, or FOR_PREORDER.
321 },
322 &quot;accessInfo&quot;: { # Any information about a volume related to reading or obtaining that volume text. This information can depend on country (books may be public domain in one country but not in another, e.g.).
323 &quot;country&quot;: &quot;A String&quot;, # The two-letter ISO_3166-1 country code for which this access information is valid. (In LITE projection.)
324 &quot;viewability&quot;: &quot;A String&quot;, # The read access of a volume. Possible values are PARTIAL, ALL_PAGES, NO_PAGES or UNKNOWN. This value depends on the country listed above. A value of PARTIAL means that the publisher has allowed some portion of the volume to be viewed publicly, without purchase. This can apply to eBooks as well as non-eBooks. Public domain books will always have a value of ALL_PAGES.
325 &quot;textToSpeechPermission&quot;: &quot;A String&quot;, # Whether text-to-speech is permitted for this volume. Values can be ALLOWED, ALLOWED_FOR_ACCESSIBILITY, or NOT_ALLOWED.
326 &quot;downloadAccess&quot;: { # Information about a volume&#x27;s download license access restrictions.
327 &quot;signature&quot;: &quot;A String&quot;, # Response signature.
328 &quot;maxDownloadDevices&quot;: 42, # If restricted, the maximum number of content download licenses for this volume.
329 &quot;deviceAllowed&quot;: True or False, # If restricted, whether access is granted for this (user, device, volume).
330 &quot;reasonCode&quot;: &quot;A String&quot;, # Error/warning reason code. Additional codes may be added in the future. 0 OK 100 ACCESS_DENIED_PUBLISHER_LIMIT 101 ACCESS_DENIED_LIMIT 200 WARNING_USED_LAST_ACCESS
331 &quot;volumeId&quot;: &quot;A String&quot;, # Identifies the volume for which this entry applies.
332 &quot;downloadsAcquired&quot;: 42, # If restricted, the number of content download licenses already acquired (including the requesting client, if licensed).
333 &quot;restricted&quot;: True or False, # Whether this volume has any download access restrictions.
334 &quot;source&quot;: &quot;A String&quot;, # Client app identifier for verification. Download access and client-validation only.
335 &quot;message&quot;: &quot;A String&quot;, # Error/warning message.
336 &quot;kind&quot;: &quot;A String&quot;, # Resource type.
337 &quot;nonce&quot;: &quot;A String&quot;, # Client nonce for verification. Download access and client-validation only.
338 &quot;justAcquired&quot;: True or False, # If deviceAllowed, whether access was just acquired with this request.
339 },
340 &quot;viewOrderUrl&quot;: &quot;A String&quot;, # For ordered but not yet processed orders, we give a URL that can be used to go to the appropriate Google Wallet page.
341 &quot;webReaderLink&quot;: &quot;A String&quot;, # URL to read this volume on the Google Books site. Link will not allow users to read non-viewable volumes.
342 &quot;epub&quot;: { # Information about epub content. (In LITE projection.)
343 &quot;downloadLink&quot;: &quot;A String&quot;, # URL to download epub. (In LITE projection.)
344 &quot;acsTokenLink&quot;: &quot;A String&quot;, # URL to retrieve ACS token for epub download. (In LITE projection.)
345 &quot;isAvailable&quot;: True or False, # Is a flowing text epub available either as public domain or for purchase. (In LITE projection.)
346 },
347 &quot;publicDomain&quot;: True or False, # Whether or not this book is public domain in the country listed above.
348 &quot;pdf&quot;: { # Information about pdf content. (In LITE projection.)
349 &quot;isAvailable&quot;: True or False, # Is a scanned image pdf available either as public domain or for purchase. (In LITE projection.)
350 &quot;downloadLink&quot;: &quot;A String&quot;, # URL to download pdf. (In LITE projection.)
351 &quot;acsTokenLink&quot;: &quot;A String&quot;, # URL to retrieve ACS token for pdf download. (In LITE projection.)
352 },
353 &quot;explicitOfflineLicenseManagement&quot;: True or False, # Whether this volume requires that the client explicitly request offline download license rather than have it done automatically when loading the content, if the client supports it.
354 &quot;embeddable&quot;: True or False, # Whether this volume can be embedded in a viewport using the Embedded Viewer API.
355 &quot;quoteSharingAllowed&quot;: True or False, # Whether quote sharing is allowed for this volume.
356 &quot;accessViewStatus&quot;: &quot;A String&quot;, # Combines the access and viewability of this volume into a single status field for this user. Values can be FULL_PURCHASED, FULL_PUBLIC_DOMAIN, SAMPLE or NONE. (In LITE projection.)
357 &quot;driveImportedContentLink&quot;: &quot;A String&quot;, # URL to the Google Drive viewer if this volume is uploaded by the user by selecting the file from Google Drive.
358 },
359 &quot;selfLink&quot;: &quot;A String&quot;, # URL to this resource. (In LITE projection.)
John Asmuth614db982014-04-24 15:46:26 -0400360 }</pre>
361</div>
362
363<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700364 <code class="details" id="list">list(orderBy=None, startIndex=None, partner=None, printType=None, libraryRestrict=None, maxAllowedMaturityRating=None, showPreorders=None, projection=None, source=None, q=None, maxResults=None, filter=None, langRestrict=None, download=None, x__xgafv=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400365 <pre>Performs a book search.
366
367Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700368 orderBy: string, Sort search results.
369 Allowed values
370 ORDER_BY_UNDEFINED -
371 newest - Most recently published.
372 relevance - Relevance to search terms.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700373 startIndex: integer, Index of the first result to return (starts at 0)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700374 partner: string, Restrict and brand results for partner ID.
375 printType: string, Restrict to books or magazines.
376 Allowed values
377 PRINT_TYPE_UNDEFINED -
378 ALL - All volume content types.
379 BOOKS - Just books.
380 MAGAZINES - Just magazines.
381 libraryRestrict: string, Restrict search to this user&#x27;s library.
382 Allowed values
383 LIBRARY_RESTRICT_UNDEFINED -
384 my-library - Restrict to the user&#x27;s library, any shelf.
385 no-restrict - Do not restrict based on user&#x27;s library.
386 maxAllowedMaturityRating: string, The maximum allowed maturity rating of returned recommendations. Books with a higher maturity rating are filtered out.
387 Allowed values
388 MAX_ALLOWED_MATURITY_RATING_UNDEFINED -
389 MATURE - Show books which are rated mature or lower.
390 not-mature - Show books which are rated not mature.
391 showPreorders: boolean, Set to true to show books available for preorder. Defaults to false.
392 projection: string, Restrict information returned to a set of selected fields.
393 Allowed values
394 PROJECTION_UNDEFINED -
395 FULL - Includes all volume data.
396 LITE - Includes a subset of fields in volumeInfo and accessInfo.
397 source: string, String to identify the originator of this request.
398 q: string, Full-text search query string.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700399 maxResults: integer, Maximum number of results to return.
John Asmuth614db982014-04-24 15:46:26 -0400400 filter: string, Filter search results.
401 Allowed values
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700402 FILTER_UNDEFINED -
John Asmuth614db982014-04-24 15:46:26 -0400403 ebooks - All Google eBooks.
404 free-ebooks - Google eBook with full volume text viewability.
405 full - Public can view entire volume text.
406 paid-ebooks - Google eBook with a price.
407 partial - Public able to see parts of text.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700408 langRestrict: string, Restrict results to books with this language code.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700409 download: string, Restrict to volumes by download availability.
410 Allowed values
411 DOWNLOAD_UNDEFINED -
412 EPUB - All volumes with epub.
413 x__xgafv: string, V1 error format.
414 Allowed values
415 1 - v1 error format
416 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400417
418Returns:
419 An object of the form:
420
421 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700422 &quot;totalItems&quot;: 42, # Total number of volumes found. This might be greater than the number of volumes returned in this response if results have been paginated.
423 &quot;kind&quot;: &quot;A String&quot;, # Resource type.
Bu Sun Kim65020912020-05-20 12:08:20 -0700424 &quot;items&quot;: [ # A list of volumes.
John Asmuth614db982014-04-24 15:46:26 -0400425 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700426 &quot;userInfo&quot;: { # User specific information related to this volume. (e.g. page this user last read or whether they purchased this book)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700427 &quot;userUploadedVolumeInfo&quot;: {
428 &quot;processingState&quot;: &quot;A String&quot;,
429 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700430 &quot;readingPosition&quot;: { # The user&#x27;s current reading position in the volume, if one is available. (In LITE projection.)
431 &quot;pdfPosition&quot;: &quot;A String&quot;, # Position in a PDF file.
432 &quot;kind&quot;: &quot;A String&quot;, # Resource type for a reading position.
433 &quot;gbTextPosition&quot;: &quot;A String&quot;, # Position in a volume for text-based content.
434 &quot;updated&quot;: &quot;A String&quot;, # Timestamp when this reading position was last updated (formatted UTC timestamp with millisecond resolution).
435 &quot;gbImagePosition&quot;: &quot;A String&quot;, # Position in a volume for image-based content.
436 &quot;volumeId&quot;: &quot;A String&quot;, # Volume id associated with this reading position.
437 &quot;epubCfiPosition&quot;: &quot;A String&quot;, # Position in an EPUB as a CFI.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700438 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700439 &quot;rentalPeriod&quot;: { # Period during this book is/was a valid rental.
440 &quot;startUtcSec&quot;: &quot;A String&quot;,
441 &quot;endUtcSec&quot;: &quot;A String&quot;,
442 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700443 &quot;isFamilySharingDisabledByFop&quot;: True or False, # Deprecated: Replaced by familySharing.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700444 &quot;isInMyBooks&quot;: True or False, # Whether or not this volume is currently in &quot;my books.&quot;
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700445 &quot;entitlementType&quot;: 42, # Whether this volume is purchased, sample, pd download etc.
446 &quot;isFamilySharedToUser&quot;: True or False, # Whether or not the user received this volume through family sharing.
447 &quot;familySharing&quot;: { # Information on the ability to share with the family.
448 &quot;isSharingAllowed&quot;: True or False, # Whether or not this volume can be shared with the family by the user. This includes sharing eligibility of both the volume and the user. If the value is true, the user can initiate a family sharing action.
449 &quot;familyRole&quot;: &quot;A String&quot;, # The role of the user in the family.
450 &quot;isSharingDisabledByFop&quot;: True or False, # Whether or not sharing this volume is temporarily disabled due to issues with the Family Wallet.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700451 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700452 &quot;acquisitionType&quot;: 42, # How this volume was acquired.
453 &quot;review&quot;: { # This user&#x27;s review of this volume, if one exists.
454 &quot;fullTextUrl&quot;: &quot;A String&quot;, # URL for the full review text, for reviews gathered from the web.
455 &quot;content&quot;: &quot;A String&quot;, # Review text.
456 &quot;title&quot;: &quot;A String&quot;, # Title for this review.
457 &quot;type&quot;: &quot;A String&quot;, # Source type for this review. Possible values are EDITORIAL, WEB_USER or GOOGLE_USER.
458 &quot;source&quot;: { # Information regarding the source of this review, when the review is not from a Google Books user.
459 &quot;url&quot;: &quot;A String&quot;, # URL of the source of the review.
460 &quot;extraDescription&quot;: &quot;A String&quot;, # Extra text about the source of the review.
461 &quot;description&quot;: &quot;A String&quot;, # Name of the source.
Bu Sun Kim65020912020-05-20 12:08:20 -0700462 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700463 &quot;rating&quot;: &quot;A String&quot;, # Star rating for this review. Possible values are ONE, TWO, THREE, FOUR, FIVE or NOT_RATED.
464 &quot;kind&quot;: &quot;A String&quot;, # Resource type for a review.
465 &quot;volumeId&quot;: &quot;A String&quot;, # Volume that this review is for.
466 &quot;author&quot;: { # Author of this review.
467 &quot;displayName&quot;: &quot;A String&quot;, # Name of this person.
468 },
469 &quot;date&quot;: &quot;A String&quot;, # Date of this review.
John Asmuth614db982014-04-24 15:46:26 -0400470 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700471 &quot;isPreordered&quot;: True or False, # Whether or not this volume was pre-ordered by the authenticated user making the request. (In LITE projection.)
472 &quot;isPurchased&quot;: True or False, # Whether or not this volume was purchased by the authenticated user making the request. (In LITE projection.)
473 &quot;isFamilySharingAllowed&quot;: True or False, # Deprecated: Replaced by familySharing.
474 &quot;updated&quot;: &quot;A String&quot;, # Timestamp when this volume was last modified by a user action, such as a reading position update, volume purchase or writing a review. (RFC 3339 UTC date-time format).
475 &quot;rentalState&quot;: &quot;A String&quot;, # Whether this book is an active or an expired rental.
476 &quot;isUploaded&quot;: True or False, # Whether or not this volume was user uploaded.
477 &quot;copy&quot;: { # Copy/Paste accounting information.
478 &quot;remainingCharacterCount&quot;: 42,
479 &quot;limitType&quot;: &quot;A String&quot;,
480 &quot;allowedCharacterCount&quot;: 42,
481 &quot;updated&quot;: &quot;A String&quot;,
482 },
483 &quot;acquiredTime&quot;: &quot;A String&quot;, # Timestamp when this volume was acquired by the user. (RFC 3339 UTC date-time format) Acquiring includes purchase, user upload, receiving family sharing, etc.
484 &quot;isFamilySharedFromUser&quot;: True or False, # Whether or not the user shared this volume with the family.
John Asmuth614db982014-04-24 15:46:26 -0400485 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700486 &quot;kind&quot;: &quot;A String&quot;, # Resource type for a volume. (In LITE projection.)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700487 &quot;etag&quot;: &quot;A String&quot;, # Opaque identifier for a specific version of a volume resource. (In LITE projection)
Bu Sun Kim65020912020-05-20 12:08:20 -0700488 &quot;volumeInfo&quot;: { # General volume information.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700489 &quot;averageRating&quot;: 3.14, # The mean review rating for this volume. (min = 1.0, max = 5.0)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700490 &quot;infoLink&quot;: &quot;A String&quot;, # URL to view information about this volume on the Google Books site. (In LITE projection)
491 &quot;printType&quot;: &quot;A String&quot;, # Type of publication of this volume. Possible values are BOOK or MAGAZINE.
492 &quot;categories&quot;: [ # A list of subject categories, such as &quot;Fiction&quot;, &quot;Suspense&quot;, etc.
493 &quot;A String&quot;,
494 ],
495 &quot;title&quot;: &quot;A String&quot;, # Volume title. (In LITE projection.)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700496 &quot;imageLinks&quot;: { # A list of image links for all the sizes that are available. (In LITE projection.)
497 &quot;smallThumbnail&quot;: &quot;A String&quot;, # Image link for small thumbnail size (width of ~80 pixels). (In LITE projection)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700498 &quot;thumbnail&quot;: &quot;A String&quot;, # Image link for thumbnail size (width of ~128 pixels). (In LITE projection)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700499 &quot;small&quot;: &quot;A String&quot;, # Image link for small size (width of ~300 pixels). (In LITE projection)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700500 &quot;extraLarge&quot;: &quot;A String&quot;, # Image link for extra large size (width of ~1280 pixels). (In LITE projection)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700501 &quot;medium&quot;: &quot;A String&quot;, # Image link for medium size (width of ~575 pixels). (In LITE projection)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700502 &quot;large&quot;: &quot;A String&quot;, # Image link for large size (width of ~800 pixels). (In LITE projection)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700503 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700504 &quot;contentVersion&quot;: &quot;A String&quot;, # An identifier for the version of the volume content (text &amp; images). (In LITE projection)
505 &quot;previewLink&quot;: &quot;A String&quot;, # URL to preview this volume on the Google Books site.
506 &quot;panelizationSummary&quot;: { # A top-level summary of the panelization info in this volume.
507 &quot;epubBubbleVersion&quot;: &quot;A String&quot;,
508 &quot;containsImageBubbles&quot;: True or False,
509 &quot;containsEpubBubbles&quot;: True or False,
510 &quot;imageBubbleVersion&quot;: &quot;A String&quot;,
511 },
512 &quot;maturityRating&quot;: &quot;A String&quot;,
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700513 &quot;seriesInfo&quot;: {
514 &quot;shortSeriesBookTitle&quot;: &quot;A String&quot;, # Short book title in the context of the series.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700515 &quot;volumeSeries&quot;: [
516 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700517 &quot;orderNumber&quot;: 42, # The book order number in the series.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700518 &quot;seriesBookType&quot;: &quot;A String&quot;, # The book type in the context of series. Examples - Single Issue, Collection Edition, etc.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700519 &quot;seriesId&quot;: &quot;A String&quot;, # The series id.
520 &quot;issue&quot;: [ # List of issues. Applicable only for Collection Edition and Omnibus.
521 {
522 &quot;issueOrderNumber&quot;: 42,
523 &quot;issueDisplayNumber&quot;: &quot;A String&quot;,
524 },
525 ],
526 },
527 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700528 &quot;bookDisplayNumber&quot;: &quot;A String&quot;, # The display number string. This should be used only for display purposes and the actual sequence should be inferred from the below orderNumber.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700529 &quot;kind&quot;: &quot;A String&quot;, # Resource type.
530 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700531 &quot;readingModes&quot;: { # The reading modes available for this volume.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700532 &quot;text&quot;: True or False,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700533 &quot;image&quot;: True or False,
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700534 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700535 &quot;dimensions&quot;: { # Physical dimensions of this volume.
536 &quot;height&quot;: &quot;A String&quot;, # Height or length of this volume (in cm).
537 &quot;thickness&quot;: &quot;A String&quot;, # Thickness of this volume (in cm).
538 &quot;width&quot;: &quot;A String&quot;, # Width of this volume (in cm).
539 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700540 &quot;comicsContent&quot;: True or False, # Whether the volume has comics content.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700541 &quot;allowAnonLogging&quot;: True or False, # Whether anonymous logging should be allowed.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700542 &quot;industryIdentifiers&quot;: [ # Industry standard identifiers for this volume.
543 {
544 &quot;type&quot;: &quot;A String&quot;, # Identifier type. Possible values are ISBN_10, ISBN_13, ISSN and OTHER.
545 &quot;identifier&quot;: &quot;A String&quot;, # Industry specific volume identifier.
546 },
547 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700548 &quot;ratingsCount&quot;: 42, # The number of review ratings for this volume.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700549 &quot;language&quot;: &quot;A String&quot;, # Best language for this volume (based on content). It is the two-letter ISO 639-1 code such as &#x27;fr&#x27;, &#x27;en&#x27;, etc.
550 &quot;publishedDate&quot;: &quot;A String&quot;, # Date of publication. (In LITE projection.)
551 &quot;samplePageCount&quot;: 42, # Total number of sample pages as per publisher metadata.
552 &quot;canonicalVolumeLink&quot;: &quot;A String&quot;, # Canonical URL for a volume. (In LITE projection.)
553 &quot;publisher&quot;: &quot;A String&quot;, # Publisher of this volume. (In LITE projection.)
554 &quot;authors&quot;: [ # The names of the authors and/or editors for this volume. (In LITE projection)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700555 &quot;A String&quot;,
556 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700557 &quot;subtitle&quot;: &quot;A String&quot;, # Volume subtitle. (In LITE projection.)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700558 &quot;description&quot;: &quot;A String&quot;, # A synopsis of the volume. The text of the description is formatted in HTML and includes simple formatting elements, such as b, i, and br tags. (In LITE projection.)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700559 &quot;printedPageCount&quot;: 42, # Total number of printed pages in generated pdf representation.
560 &quot;pageCount&quot;: 42, # Total number of pages as per publisher metadata.
561 &quot;mainCategory&quot;: &quot;A String&quot;, # The main category to which this volume belongs. It will be the category from the categories list returned below that has the highest weight.
562 },
563 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for a volume. (In LITE projection.)
564 &quot;recommendedInfo&quot;: { # Recommendation related information for this volume.
565 &quot;explanation&quot;: &quot;A String&quot;, # A text explaining why this volume is recommended.
566 },
567 &quot;searchInfo&quot;: { # Search result information related to this volume.
568 &quot;textSnippet&quot;: &quot;A String&quot;, # A text snippet containing the search query.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700569 },
570 &quot;layerInfo&quot;: { # What layers exist in this volume and high level information about them.
571 &quot;layers&quot;: [ # A layer should appear here if and only if the layer exists for this book.
572 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700573 &quot;layerId&quot;: &quot;A String&quot;, # The layer id of this layer (e.g. &quot;geo&quot;).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700574 &quot;volumeAnnotationsVersion&quot;: &quot;A String&quot;, # The current version of this layer&#x27;s volume annotations. Note that this version applies only to the data in the books.layers.volumeAnnotations.* responses. The actual annotation data is versioned separately.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700575 },
576 ],
John Asmuth614db982014-04-24 15:46:26 -0400577 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700578 &quot;saleInfo&quot;: { # Any information about a volume related to the eBookstore and/or purchaseability. This information can depend on the country where the request originates from (i.e. books may not be for sale in certain countries).
579 &quot;country&quot;: &quot;A String&quot;, # The two-letter ISO_3166-1 country code for which this sale information is valid. (In LITE projection.)
580 &quot;retailPrice&quot;: { # The actual selling price of the book. This is the same as the suggested retail or list price unless there are offers or discounts on this volume. (In LITE projection.)
581 &quot;currencyCode&quot;: &quot;A String&quot;, # An ISO 4217, three-letter currency code. (In LITE projection.)
582 &quot;amount&quot;: 3.14, # Amount in the currency listed below. (In LITE projection.)
583 },
584 &quot;isEbook&quot;: True or False, # Whether or not this volume is an eBook (can be added to the My eBooks shelf).
585 &quot;onSaleDate&quot;: &quot;A String&quot;, # The date on which this book is available for sale.
586 &quot;offers&quot;: [ # Offers available for this volume (sales and rentals).
587 {
588 &quot;giftable&quot;: True or False, # Indicates whether the offer is giftable.
589 &quot;rentalDuration&quot;: { # The rental duration (for rental offers only).
590 &quot;count&quot;: 3.14,
591 &quot;unit&quot;: &quot;A String&quot;,
592 },
593 &quot;finskyOfferType&quot;: 42, # The finsky offer type (e.g., PURCHASE=0 RENTAL=3)
594 &quot;listPrice&quot;: { # Offer list (=undiscounted) price in Micros.
595 &quot;amountInMicros&quot;: 3.14,
596 &quot;currencyCode&quot;: &quot;A String&quot;,
597 },
598 &quot;retailPrice&quot;: { # Offer retail (=discounted) price in Micros
599 &quot;currencyCode&quot;: &quot;A String&quot;,
600 &quot;amountInMicros&quot;: 3.14,
601 },
602 },
603 ],
604 &quot;listPrice&quot;: { # Suggested retail price. (In LITE projection.)
605 &quot;amount&quot;: 3.14, # Amount in the currency listed below. (In LITE projection.)
606 &quot;currencyCode&quot;: &quot;A String&quot;, # An ISO 4217, three-letter currency code. (In LITE projection.)
607 },
608 &quot;buyLink&quot;: &quot;A String&quot;, # URL to purchase this volume on the Google Books site. (In LITE projection)
609 &quot;saleability&quot;: &quot;A String&quot;, # Whether or not this book is available for sale or offered for free in the Google eBookstore for the country listed above. Possible values are FOR_SALE, FOR_RENTAL_ONLY, FOR_SALE_AND_RENTAL, FREE, NOT_FOR_SALE, or FOR_PREORDER.
610 },
611 &quot;accessInfo&quot;: { # Any information about a volume related to reading or obtaining that volume text. This information can depend on country (books may be public domain in one country but not in another, e.g.).
612 &quot;country&quot;: &quot;A String&quot;, # The two-letter ISO_3166-1 country code for which this access information is valid. (In LITE projection.)
613 &quot;viewability&quot;: &quot;A String&quot;, # The read access of a volume. Possible values are PARTIAL, ALL_PAGES, NO_PAGES or UNKNOWN. This value depends on the country listed above. A value of PARTIAL means that the publisher has allowed some portion of the volume to be viewed publicly, without purchase. This can apply to eBooks as well as non-eBooks. Public domain books will always have a value of ALL_PAGES.
614 &quot;textToSpeechPermission&quot;: &quot;A String&quot;, # Whether text-to-speech is permitted for this volume. Values can be ALLOWED, ALLOWED_FOR_ACCESSIBILITY, or NOT_ALLOWED.
615 &quot;downloadAccess&quot;: { # Information about a volume&#x27;s download license access restrictions.
616 &quot;signature&quot;: &quot;A String&quot;, # Response signature.
617 &quot;maxDownloadDevices&quot;: 42, # If restricted, the maximum number of content download licenses for this volume.
618 &quot;deviceAllowed&quot;: True or False, # If restricted, whether access is granted for this (user, device, volume).
619 &quot;reasonCode&quot;: &quot;A String&quot;, # Error/warning reason code. Additional codes may be added in the future. 0 OK 100 ACCESS_DENIED_PUBLISHER_LIMIT 101 ACCESS_DENIED_LIMIT 200 WARNING_USED_LAST_ACCESS
620 &quot;volumeId&quot;: &quot;A String&quot;, # Identifies the volume for which this entry applies.
621 &quot;downloadsAcquired&quot;: 42, # If restricted, the number of content download licenses already acquired (including the requesting client, if licensed).
622 &quot;restricted&quot;: True or False, # Whether this volume has any download access restrictions.
623 &quot;source&quot;: &quot;A String&quot;, # Client app identifier for verification. Download access and client-validation only.
624 &quot;message&quot;: &quot;A String&quot;, # Error/warning message.
625 &quot;kind&quot;: &quot;A String&quot;, # Resource type.
626 &quot;nonce&quot;: &quot;A String&quot;, # Client nonce for verification. Download access and client-validation only.
627 &quot;justAcquired&quot;: True or False, # If deviceAllowed, whether access was just acquired with this request.
628 },
629 &quot;viewOrderUrl&quot;: &quot;A String&quot;, # For ordered but not yet processed orders, we give a URL that can be used to go to the appropriate Google Wallet page.
630 &quot;webReaderLink&quot;: &quot;A String&quot;, # URL to read this volume on the Google Books site. Link will not allow users to read non-viewable volumes.
631 &quot;epub&quot;: { # Information about epub content. (In LITE projection.)
632 &quot;downloadLink&quot;: &quot;A String&quot;, # URL to download epub. (In LITE projection.)
633 &quot;acsTokenLink&quot;: &quot;A String&quot;, # URL to retrieve ACS token for epub download. (In LITE projection.)
634 &quot;isAvailable&quot;: True or False, # Is a flowing text epub available either as public domain or for purchase. (In LITE projection.)
635 },
636 &quot;publicDomain&quot;: True or False, # Whether or not this book is public domain in the country listed above.
637 &quot;pdf&quot;: { # Information about pdf content. (In LITE projection.)
638 &quot;isAvailable&quot;: True or False, # Is a scanned image pdf available either as public domain or for purchase. (In LITE projection.)
639 &quot;downloadLink&quot;: &quot;A String&quot;, # URL to download pdf. (In LITE projection.)
640 &quot;acsTokenLink&quot;: &quot;A String&quot;, # URL to retrieve ACS token for pdf download. (In LITE projection.)
641 },
642 &quot;explicitOfflineLicenseManagement&quot;: True or False, # Whether this volume requires that the client explicitly request offline download license rather than have it done automatically when loading the content, if the client supports it.
643 &quot;embeddable&quot;: True or False, # Whether this volume can be embedded in a viewport using the Embedded Viewer API.
644 &quot;quoteSharingAllowed&quot;: True or False, # Whether quote sharing is allowed for this volume.
645 &quot;accessViewStatus&quot;: &quot;A String&quot;, # Combines the access and viewability of this volume into a single status field for this user. Values can be FULL_PURCHASED, FULL_PUBLIC_DOMAIN, SAMPLE or NONE. (In LITE projection.)
646 &quot;driveImportedContentLink&quot;: &quot;A String&quot;, # URL to the Google Drive viewer if this volume is uploaded by the user by selecting the file from Google Drive.
647 },
648 &quot;selfLink&quot;: &quot;A String&quot;, # URL to this resource. (In LITE projection.)
John Asmuth614db982014-04-24 15:46:26 -0400649 },
650 ],
John Asmuth614db982014-04-24 15:46:26 -0400651 }</pre>
652</div>
653
654</body></html>