| Index: generated/googleapis/lib/script/v1.dart
|
| diff --git a/generated/googleapis/lib/script/v1.dart b/generated/googleapis/lib/script/v1.dart
|
| index 5cfc6c751efcb12ed88bf241bec3775639c6d87b..859c6275bdb7fbed28747ee7cbebef35cfb3df31 100644
|
| --- a/generated/googleapis/lib/script/v1.dart
|
| +++ b/generated/googleapis/lib/script/v1.dart
|
| @@ -259,6 +259,13 @@ class ExecutionResponse {
|
| * `String`, `bool` and `null` as well as `Map` and `List` values.
|
| */
|
| core.Object result;
|
| + /**
|
| + *
|
| + * Possible string values are:
|
| + * - "SUCCESS" : A SUCCESS.
|
| + * - "CANCELED" : A CANCELED.
|
| + */
|
| + core.String status;
|
|
|
| ExecutionResponse();
|
|
|
| @@ -266,6 +273,9 @@ class ExecutionResponse {
|
| if (_json.containsKey("result")) {
|
| result = _json["result"];
|
| }
|
| + if (_json.containsKey("status")) {
|
| + status = _json["status"];
|
| + }
|
| }
|
|
|
| core.Map toJson() {
|
| @@ -273,6 +283,9 @@ class ExecutionResponse {
|
| if (result != null) {
|
| _json["result"] = result;
|
| }
|
| + if (status != null) {
|
| + _json["status"] = status;
|
| + }
|
| return _json;
|
| }
|
| }
|
|
|