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

Unified Diff: generated/googleapis/lib/content/v2.dart

Issue 2039113004: Api-roll 37: 2016-06-06 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 4 years, 6 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
Index: generated/googleapis/lib/content/v2.dart
diff --git a/generated/googleapis/lib/content/v2.dart b/generated/googleapis/lib/content/v2.dart
index 638bd07fe89e55948f31779b056e956eb1e9a4c3..7a61e59f72246687556c905e7cf9f85d4325bcdd 100644
--- a/generated/googleapis/lib/content/v2.dart
+++ b/generated/googleapis/lib/content/v2.dart
@@ -8620,6 +8620,11 @@ class Price {
class Product {
/** Additional URLs of images of the item. */
core.List<core.String> additionalImageLinks;
+ /**
+ * Additional categories of the item (formatted as in products feed
+ * specification).
+ */
+ core.List<core.String> additionalProductTypes;
/** Set to true if the item is targeted towards adults. */
core.bool adult;
/**
@@ -8813,6 +8818,9 @@ class Product {
if (_json.containsKey("additionalImageLinks")) {
additionalImageLinks = _json["additionalImageLinks"];
}
+ if (_json.containsKey("additionalProductTypes")) {
+ additionalProductTypes = _json["additionalProductTypes"];
+ }
if (_json.containsKey("adult")) {
adult = _json["adult"];
}
@@ -9030,6 +9038,9 @@ class Product {
if (additionalImageLinks != null) {
_json["additionalImageLinks"] = additionalImageLinks;
}
+ if (additionalProductTypes != null) {
+ _json["additionalProductTypes"] = additionalProductTypes;
+ }
if (adult != null) {
_json["adult"] = adult;
}
« no previous file with comments | « generated/googleapis/lib/consumersurveys/v2.dart ('k') | generated/googleapis/lib/deploymentmanager/v2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698