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

Unified Diff: generated/googleapis/lib/consumersurveys/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/compute/v1.dart ('k') | generated/googleapis/lib/container/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/consumersurveys/v2.dart
diff --git a/generated/googleapis/lib/consumersurveys/v2.dart b/generated/googleapis/lib/consumersurveys/v2.dart
index 6dadc12dde2d85330d35b434fef0eef4f728a3c5..da70291e277e5464dbb4d2ce29f05f2417d75036 100644
--- a/generated/googleapis/lib/consumersurveys/v2.dart
+++ b/generated/googleapis/lib/consumersurveys/v2.dart
@@ -1301,8 +1301,6 @@ class SurveysStartResponse {
* error reporting or troubleshooting requests.
*/
core.String requestId;
- /** Survey object containing the specification of the started Survey. */
- Survey resource;
SurveysStartResponse();
@@ -1310,9 +1308,6 @@ class SurveysStartResponse {
if (_json.containsKey("requestId")) {
requestId = _json["requestId"];
}
- if (_json.containsKey("resource")) {
- resource = new Survey.fromJson(_json["resource"]);
- }
}
core.Map toJson() {
@@ -1320,9 +1315,6 @@ class SurveysStartResponse {
if (requestId != null) {
_json["requestId"] = requestId;
}
- if (resource != null) {
- _json["resource"] = (resource).toJson();
- }
return _json;
}
}
@@ -1333,8 +1325,6 @@ class SurveysStopResponse {
* error reporting or troubleshooting requests.
*/
core.String requestId;
- /** Survey object containing the specification of the stopped Survey. */
- Survey resource;
SurveysStopResponse();
@@ -1342,9 +1332,6 @@ class SurveysStopResponse {
if (_json.containsKey("requestId")) {
requestId = _json["requestId"];
}
- if (_json.containsKey("resource")) {
- resource = new Survey.fromJson(_json["resource"]);
- }
}
core.Map toJson() {
@@ -1352,9 +1339,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/compute/v1.dart ('k') | generated/googleapis/lib/container/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698