| Index: generated/googleapis/lib/qpxexpress/v1.dart
|
| diff --git a/generated/googleapis/lib/qpxexpress/v1.dart b/generated/googleapis/lib/qpxexpress/v1.dart
|
| index e94b6be7ce720c0c6c4ae4680385e80be15dbdd6..29fc7d0ec13780de72cc11e2ba6a10ac79654579 100644
|
| --- a/generated/googleapis/lib/qpxexpress/v1.dart
|
| +++ b/generated/googleapis/lib/qpxexpress/v1.dart
|
| @@ -1581,6 +1581,8 @@ class TripOptionsRequest {
|
| core.List<SliceInput> slice;
|
| /** The number of solutions to return, maximum 500. */
|
| core.int solutions;
|
| + /** IATA country code representing the point of ticketing. */
|
| + core.String ticketingCountry;
|
|
|
| TripOptionsRequest();
|
|
|
| @@ -1603,6 +1605,9 @@ class TripOptionsRequest {
|
| if (_json.containsKey("solutions")) {
|
| solutions = _json["solutions"];
|
| }
|
| + if (_json.containsKey("ticketingCountry")) {
|
| + ticketingCountry = _json["ticketingCountry"];
|
| + }
|
| }
|
|
|
| core.Map toJson() {
|
| @@ -1625,6 +1630,9 @@ class TripOptionsRequest {
|
| if (solutions != null) {
|
| _json["solutions"] = solutions;
|
| }
|
| + if (ticketingCountry != null) {
|
| + _json["ticketingCountry"] = ticketingCountry;
|
| + }
|
| return _json;
|
| }
|
| }
|
|
|