| 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;
|
| }
|
| }
|
|
|