Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Unified Diff: generated/googleapis/lib/books/v1.dart

Issue 2159673002: Api-roll 39: 2016-07-18 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis/lib/bigquery/v2.dart ('k') | generated/googleapis/lib/civicinfo/v2.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/books/v1.dart
diff --git a/generated/googleapis/lib/books/v1.dart b/generated/googleapis/lib/books/v1.dart
index 149a536331a4f828168744ef44a465880224806f..cb5d2f48b0d62c0e73e0dc7f3292a0ce4f879a0d 100644
--- a/generated/googleapis/lib/books/v1.dart
+++ b/generated/googleapis/lib/books/v1.dart
@@ -2920,7 +2920,7 @@ class VolumesMybooksResourceApi {
*
* Request parameters:
*
- * [acquireMethod] - How the book was aquired
+ * [acquireMethod] - How the book was acquired
*
* [country] - ISO-3166-1 code to override the IP-based location.
*
@@ -7424,6 +7424,48 @@ class VolumeVolumeInfoIndustryIdentifiers {
}
}
+/** A top-level summary of the panelization info in this volume. */
+class VolumeVolumeInfoPanelizationSummary {
+ core.bool containsEpubBubbles;
+ core.bool containsImageBubbles;
+ core.String epubBubbleVersion;
+ core.String imageBubbleVersion;
+
+ VolumeVolumeInfoPanelizationSummary();
+
+ VolumeVolumeInfoPanelizationSummary.fromJson(core.Map _json) {
+ if (_json.containsKey("containsEpubBubbles")) {
+ containsEpubBubbles = _json["containsEpubBubbles"];
+ }
+ if (_json.containsKey("containsImageBubbles")) {
+ containsImageBubbles = _json["containsImageBubbles"];
+ }
+ if (_json.containsKey("epubBubbleVersion")) {
+ epubBubbleVersion = _json["epubBubbleVersion"];
+ }
+ if (_json.containsKey("imageBubbleVersion")) {
+ imageBubbleVersion = _json["imageBubbleVersion"];
+ }
+ }
+
+ core.Map toJson() {
+ var _json = new core.Map();
+ if (containsEpubBubbles != null) {
+ _json["containsEpubBubbles"] = containsEpubBubbles;
+ }
+ if (containsImageBubbles != null) {
+ _json["containsImageBubbles"] = containsImageBubbles;
+ }
+ if (epubBubbleVersion != null) {
+ _json["epubBubbleVersion"] = epubBubbleVersion;
+ }
+ if (imageBubbleVersion != null) {
+ _json["imageBubbleVersion"] = imageBubbleVersion;
+ }
+ return _json;
+ }
+}
+
/** General volume information. */
class VolumeVolumeInfo {
/** Whether anonymous logging should be allowed. */
@@ -7477,6 +7519,8 @@ class VolumeVolumeInfo {
core.String maturityRating;
/** Total number of pages as per publisher metadata. */
core.int pageCount;
+ /** A top-level summary of the panelization info in this volume. */
+ VolumeVolumeInfoPanelizationSummary panelizationSummary;
/** URL to preview this volume on the Google Books site. */
core.String previewLink;
/**
@@ -7554,6 +7598,9 @@ class VolumeVolumeInfo {
if (_json.containsKey("pageCount")) {
pageCount = _json["pageCount"];
}
+ if (_json.containsKey("panelizationSummary")) {
+ panelizationSummary = new VolumeVolumeInfoPanelizationSummary.fromJson(_json["panelizationSummary"]);
+ }
if (_json.containsKey("previewLink")) {
previewLink = _json["previewLink"];
}
@@ -7636,6 +7683,9 @@ class VolumeVolumeInfo {
if (pageCount != null) {
_json["pageCount"] = pageCount;
}
+ if (panelizationSummary != null) {
+ _json["panelizationSummary"] = (panelizationSummary).toJson();
+ }
if (previewLink != null) {
_json["previewLink"] = previewLink;
}
« no previous file with comments | « generated/googleapis/lib/bigquery/v2.dart ('k') | generated/googleapis/lib/civicinfo/v2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698