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