blob: 0e2df007b132bfffd46c10310a3f66a484c393e1 [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.bookshelves.html">bookshelves</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="books_v1.bookshelves.volumes.html">volumes()</a></code>
79</p>
80<p class="firstline">Returns the volumes Resource.</p>
81
82<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070083 <code><a href="#get">get(userId, shelf, source=None, x__xgafv=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040084<p class="firstline">Retrieves metadata for a specific bookshelf for the specified user.</p>
85<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070086 <code><a href="#list">list(userId, source=None, x__xgafv=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040087<p class="firstline">Retrieves a list of public bookshelves for the specified user.</p>
88<h3>Method Details</h3>
89<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070090 <code class="details" id="get">get(userId, shelf, source=None, x__xgafv=None)</code>
John Asmuth614db982014-04-24 15:46:26 -040091 <pre>Retrieves metadata for a specific bookshelf for the specified user.
92
93Args:
94 userId: string, ID of user for whom to retrieve bookshelves. (required)
95 shelf: string, ID of bookshelf to retrieve. (required)
96 source: string, String to identify the originator of this request.
Bu Sun Kimd059ad82020-07-22 17:02:09 -070097 x__xgafv: string, V1 error format.
98 Allowed values
99 1 - v1 error format
100 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400101
102Returns:
103 An object of the form:
104
105 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700106 &quot;updated&quot;: &quot;A String&quot;, # Last modified time of this bookshelf (formatted UTC timestamp with millisecond resolution).
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700107 &quot;selfLink&quot;: &quot;A String&quot;, # URL to this resource.
108 &quot;access&quot;: &quot;A String&quot;, # Whether this bookshelf is PUBLIC or PRIVATE.
109 &quot;title&quot;: &quot;A String&quot;, # Title of this bookshelf.
Bu Sun Kim65020912020-05-20 12:08:20 -0700110 &quot;volumeCount&quot;: 42, # Number of volumes in this bookshelf.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700111 &quot;created&quot;: &quot;A String&quot;, # Created time for this bookshelf (formatted UTC timestamp with millisecond resolution).
112 &quot;id&quot;: 42, # Id of this bookshelf, only unique by user.
113 &quot;kind&quot;: &quot;A String&quot;, # Resource type for bookshelf metadata.
114 &quot;description&quot;: &quot;A String&quot;, # Description of this bookshelf.
Bu Sun Kim65020912020-05-20 12:08:20 -0700115 &quot;volumesLastUpdated&quot;: &quot;A String&quot;, # Last time a volume was added or removed from this bookshelf (formatted UTC timestamp with millisecond resolution).
John Asmuth614db982014-04-24 15:46:26 -0400116 }</pre>
117</div>
118
119<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700120 <code class="details" id="list">list(userId, source=None, x__xgafv=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400121 <pre>Retrieves a list of public bookshelves for the specified user.
122
123Args:
124 userId: string, ID of user for whom to retrieve bookshelves. (required)
125 source: string, String to identify the originator of this request.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700126 x__xgafv: string, V1 error format.
127 Allowed values
128 1 - v1 error format
129 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400130
131Returns:
132 An object of the form:
133
134 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700135 &quot;items&quot;: [ # A list of bookshelves.
John Asmuth614db982014-04-24 15:46:26 -0400136 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700137 &quot;updated&quot;: &quot;A String&quot;, # Last modified time of this bookshelf (formatted UTC timestamp with millisecond resolution).
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700138 &quot;selfLink&quot;: &quot;A String&quot;, # URL to this resource.
139 &quot;access&quot;: &quot;A String&quot;, # Whether this bookshelf is PUBLIC or PRIVATE.
140 &quot;title&quot;: &quot;A String&quot;, # Title of this bookshelf.
Bu Sun Kim65020912020-05-20 12:08:20 -0700141 &quot;volumeCount&quot;: 42, # Number of volumes in this bookshelf.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700142 &quot;created&quot;: &quot;A String&quot;, # Created time for this bookshelf (formatted UTC timestamp with millisecond resolution).
143 &quot;id&quot;: 42, # Id of this bookshelf, only unique by user.
144 &quot;kind&quot;: &quot;A String&quot;, # Resource type for bookshelf metadata.
145 &quot;description&quot;: &quot;A String&quot;, # Description of this bookshelf.
Bu Sun Kim65020912020-05-20 12:08:20 -0700146 &quot;volumesLastUpdated&quot;: &quot;A String&quot;, # Last time a volume was added or removed from this bookshelf (formatted UTC timestamp with millisecond resolution).
John Asmuth614db982014-04-24 15:46:26 -0400147 },
148 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700149 &quot;kind&quot;: &quot;A String&quot;, # Resource type.
John Asmuth614db982014-04-24 15:46:26 -0400150 }</pre>
151</div>
152
153</body></html>