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

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

Issue 2226653002: Api-roll 40: 2016-08-08 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Addressed review comments Created 4 years, 4 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/identitytoolkit/v3.dart ('k') | generated/googleapis/lib/servicecontrol/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
}
« no previous file with comments | « generated/googleapis/lib/identitytoolkit/v3.dart ('k') | generated/googleapis/lib/servicecontrol/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698