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

Unified Diff: generated/googleapis/lib/surveys/v2.dart

Issue 2824163002: Api-roll 48: 2017-04-18 (Closed)
Patch Set: Revert changes to pubspecs Created 3 years, 8 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/storagetransfer/v1.dart ('k') | generated/googleapis/lib/tracing/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/surveys/v2.dart
diff --git a/generated/googleapis/lib/surveys/v2.dart b/generated/googleapis/lib/surveys/v2.dart
index 574f55848f0a932d4592a9c4405bb8920e917e19..c99660b97c51d3742c85aa606fb3bbc8b77180ae 100644
--- a/generated/googleapis/lib/surveys/v2.dart
+++ b/generated/googleapis/lib/surveys/v2.dart
@@ -1482,8 +1482,6 @@ class SurveysStartResponse {
* error reporting or troubleshooting requests.
*/
core.String requestId;
- /** Survey object containing the specification of the started Survey. */
- Survey resource;
SurveysStartResponse();
@@ -1491,9 +1489,6 @@ class SurveysStartResponse {
if (_json.containsKey("requestId")) {
requestId = _json["requestId"];
}
- if (_json.containsKey("resource")) {
- resource = new Survey.fromJson(_json["resource"]);
- }
}
core.Map toJson() {
@@ -1501,9 +1496,6 @@ class SurveysStartResponse {
if (requestId != null) {
_json["requestId"] = requestId;
}
- if (resource != null) {
- _json["resource"] = (resource).toJson();
- }
return _json;
}
}
@@ -1514,8 +1506,6 @@ class SurveysStopResponse {
* error reporting or troubleshooting requests.
*/
core.String requestId;
- /** Survey object containing the specification of the stopped Survey. */
- Survey resource;
SurveysStopResponse();
@@ -1523,9 +1513,6 @@ class SurveysStopResponse {
if (_json.containsKey("requestId")) {
requestId = _json["requestId"];
}
- if (_json.containsKey("resource")) {
- resource = new Survey.fromJson(_json["resource"]);
- }
}
core.Map toJson() {
@@ -1533,9 +1520,6 @@ class SurveysStopResponse {
if (requestId != null) {
_json["requestId"] = requestId;
}
- if (resource != null) {
- _json["resource"] = (resource).toJson();
- }
return _json;
}
}
« no previous file with comments | « generated/googleapis/lib/storagetransfer/v1.dart ('k') | generated/googleapis/lib/tracing/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698