Update docs for 1.3.2 release.
diff --git a/docs/dyn/books_v1.myconfig.html b/docs/dyn/books_v1.myconfig.html
index be107f8..1f8a702 100644
--- a/docs/dyn/books_v1.myconfig.html
+++ b/docs/dyn/books_v1.myconfig.html
@@ -75,6 +75,9 @@
<h1><a href="books_v1.html">Books API</a> . <a href="books_v1.myconfig.html">myconfig</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
+ <code><a href="#getUserSettings">getUserSettings()</a></code></p>
+<p class="firstline">Gets the current settings for the user.</p>
+<p class="toc_element">
<code><a href="#releaseDownloadAccess">releaseDownloadAccess(volumeIds, cpksver, source=None, locale=None)</a></code></p>
<p class="firstline">Release downloaded content access restriction.</p>
<p class="toc_element">
@@ -83,8 +86,29 @@
<p class="toc_element">
<code><a href="#syncVolumeLicenses">syncVolumeLicenses(source, nonce, cpksver, features=None, locale=None, showPreorders=None, volumeIds=None)</a></code></p>
<p class="firstline">Request downloaded content access for specified volumes on the My eBooks shelf.</p>
+<p class="toc_element">
+ <code><a href="#updateUserSettings">updateUserSettings(body)</a></code></p>
+<p class="firstline">Sets the settings for the user. Unspecified sub-objects will retain the existing value.</p>
<h3>Method Details</h3>
<div class="method">
+ <code class="details" id="getUserSettings">getUserSettings()</code>
+ <pre>Gets the current settings for the user.
+
+Args:
+
+Returns:
+ An object of the form:
+
+ {
+ "kind": "books#usersettings", # Resource type.
+ "notesExport": { # User settings in sub-objects, each for different purposes.
+ "isEnabled": True or False,
+ "folderName": "A String",
+ },
+ }</pre>
+</div>
+
+<div class="method">
<code class="details" id="releaseDownloadAccess">releaseDownloadAccess(volumeIds, cpksver, source=None, locale=None)</code>
<pre>Release downloaded content access restriction.
@@ -305,6 +329,7 @@
"readingModes": "", # The reading modes available for this volume.
"title": "A String", # Volume title. (In LITE projection.)
"printType": "A String", # Type of publication of this volume. Possible values are BOOK or MAGAZINE.
+ "samplePageCount": 42, # Total number of sample pages as per publisher metadata.
"printedPageCount": 42, # Total number of printed pages in generated pdf representation.
"averageRating": 3.14, # The mean review rating for this volume. (min = 1.0, max = 5.0)
"infoLink": "A String", # URL to view information about this volume on the Google Books site. (In LITE projection)
@@ -376,4 +401,33 @@
}</pre>
</div>
+<div class="method">
+ <code class="details" id="updateUserSettings">updateUserSettings(body)</code>
+ <pre>Sets the settings for the user. Unspecified sub-objects will retain the existing value.
+
+Args:
+ body: object, The request body. (required)
+ The object takes the form of:
+
+{
+ "kind": "books#usersettings", # Resource type.
+ "notesExport": { # User settings in sub-objects, each for different purposes.
+ "isEnabled": True or False,
+ "folderName": "A String",
+ },
+}
+
+
+Returns:
+ An object of the form:
+
+ {
+ "kind": "books#usersettings", # Resource type.
+ "notesExport": { # User settings in sub-objects, each for different purposes.
+ "isEnabled": True or False,
+ "folderName": "A String",
+ },
+ }</pre>
+</div>
+
</body></html>
\ No newline at end of file