| 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;
|
| }
|
|
|