| Index: generated/googleapis/lib/content/v2sandbox.dart
|
| diff --git a/generated/googleapis/lib/content/v2sandbox.dart b/generated/googleapis/lib/content/v2sandbox.dart
|
| index 312152684e72673969b31a19374e64152bdfba27..75a15e95442c4ffa94789a428241ed5440bd6ebe 100644
|
| --- a/generated/googleapis/lib/content/v2sandbox.dart
|
| +++ b/generated/googleapis/lib/content/v2sandbox.dart
|
| @@ -875,6 +875,8 @@ class Errors {
|
| class Order {
|
| /** Whether the order was acknowledged. */
|
| core.bool acknowledged;
|
| + /** The channel type of the order: "purchaseOnGoogle" or "googleExpress". */
|
| + core.String channelType;
|
| /** The details of the customer who placed the order. */
|
| OrderCustomer customer;
|
| /** The details for the delivery. */
|
| @@ -927,6 +929,9 @@ class Order {
|
| if (_json.containsKey("acknowledged")) {
|
| acknowledged = _json["acknowledged"];
|
| }
|
| + if (_json.containsKey("channelType")) {
|
| + channelType = _json["channelType"];
|
| + }
|
| if (_json.containsKey("customer")) {
|
| customer = new OrderCustomer.fromJson(_json["customer"]);
|
| }
|
| @@ -988,6 +993,9 @@ class Order {
|
| if (acknowledged != null) {
|
| _json["acknowledged"] = acknowledged;
|
| }
|
| + if (channelType != null) {
|
| + _json["channelType"] = channelType;
|
| + }
|
| if (customer != null) {
|
| _json["customer"] = (customer).toJson();
|
| }
|
|
|