/** * Reservation Service API * Reservation service for reserve a car * * OpenAPI spec version: 0.0.1-SNAPSHOT * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { Address } from './address'; import { AvailableVehicle } from './availableVehicle'; import { DiscountCodeCDP } from './discountCodeCDP'; import { DropoffType } from './dropoffType'; import { ExclusionType } from './exclusionType'; import { PersonalInfo } from './personalInfo'; import { PickupType } from './pickupType'; import { TotalsAndTaxes } from './totalsAndTaxes'; import { WarningType } from './warningType'; export interface UpdateResponse { address?: Address; age?: string; arrivalFlightTrainName?: string; arrivalFlightTrainNumber?: string; confirmationNumber?: string; discountCodeCDP?: DiscountCodeCDP; discountCodeConventionNumber?: string; discountCodePromoCoupon?: string; discountCodeRateCode?: string; discountCodeVoucherNumber?: string; dropoff?: DropoffType; exclusions?: Array; generalRemarks?: string; isUltimateChoice?: string; mobileGoldAlertText?: string; personalInfo?: PersonalInfo; pickup?: PickupType; pointOfSale?: string; serviceIndicator?: string; totalsAndTaxes?: TotalsAndTaxes; vehicleDetails?: AvailableVehicle; warnings?: Array; }