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

Unified Diff: generated/googleapis_beta/lib/toolresults/v1beta3.dart

Issue 2987103002: Api-Roll 52: 2017-07-31 (Closed)
Patch Set: Created 3 years, 5 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_beta/lib/toolresults/v1beta3.dart
diff --git a/generated/googleapis_beta/lib/toolresults/v1beta3.dart b/generated/googleapis_beta/lib/toolresults/v1beta3.dart
index 0f201fb16f350134c7fa452088847e84f64ec820..c9ed561efb915f647621bff98eee47830ad165bb 100644
--- a/generated/googleapis_beta/lib/toolresults/v1beta3.dart
+++ b/generated/googleapis_beta/lib/toolresults/v1beta3.dart
@@ -2082,7 +2082,7 @@ class Execution {
*/
core.String state;
/**
- * TestExecution Matrix ID that the Test Service uses.
+ * TestExecution Matrix ID that the TestExecutionService uses.
*
* - In response: present if set by create - In create: optional - In update:
* never set
@@ -3018,26 +3018,42 @@ class SkippedDetail {
/** A stacktrace. */
class StackTrace {
+ /** Exception cluster ID */
+ core.String clusterId;
/**
* The stack trace message.
*
* Required
*/
core.String exception;
+ /** Exception report ID */
+ core.String reportId;
StackTrace();
StackTrace.fromJson(core.Map _json) {
+ if (_json.containsKey("clusterId")) {
+ clusterId = _json["clusterId"];
+ }
if (_json.containsKey("exception")) {
exception = _json["exception"];
}
+ if (_json.containsKey("reportId")) {
+ reportId = _json["reportId"];
+ }
}
core.Map<core.String, core.Object> toJson() {
final core.Map<core.String, core.Object> _json = new core.Map<core.String, core.Object>();
+ if (clusterId != null) {
+ _json["clusterId"] = clusterId;
+ }
if (exception != null) {
_json["exception"] = exception;
}
+ if (reportId != null) {
+ _json["reportId"] = reportId;
+ }
return _json;
}
}
« no previous file with comments | « generated/googleapis_beta/lib/speech/v1beta1.dart ('k') | generated/googleapis_beta/lib/toolresults/v1beta3firstparty.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698