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

Unified Diff: generated/googleapis_beta/lib/toolresults/v1beta3firstparty.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/v1beta3firstparty.dart
diff --git a/generated/googleapis_beta/lib/toolresults/v1beta3firstparty.dart b/generated/googleapis_beta/lib/toolresults/v1beta3firstparty.dart
index 457c58edfab7e728aa1c2721a82636823cf28e58..9d055d38fa5ff9519524e58b99e2fb2f0db03ad2 100644
--- a/generated/googleapis_beta/lib/toolresults/v1beta3firstparty.dart
+++ b/generated/googleapis_beta/lib/toolresults/v1beta3firstparty.dart
@@ -2079,7 +2079,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
@@ -3015,26 +3015,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/toolresults/v1beta3.dart ('k') | generated/googleapis_beta/lib/videointelligence/v1beta1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698