/** * Quote Service API * Quote service for calculate the total quotes * * 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. */ export interface QuoteRequest { /** * Age Range */ ageRange: string; /** * Applicant Number */ applicantNumber?: string; brand?: string; /** * Confirmation Number */ confirmationNumber?: string; /** * Convention Number */ conventionNumber?: string; /** * Discount Code */ corporateDiscountNumber?: string; /** * Discount Code Type ('Business'/'Liesure') */ corporateDiscountNumberType?: string; correlationId?: string; /** * Current Reservation Rate Amount */ currentReservationRateAmount?: string; /** * Drop Off Date */ dropOffDateTime: string; /** * Drop Off Location */ dropOffLocationOag6Code: string; locale?: string; /** * Member ID */ memberId?: string; /** * Negotiated Rate */ negotiatedRate?: boolean; /** * Pick Up Date */ pickUpDateTime: string; /** * Pick Up Location (DFWX11, DTW, ETC) */ pickUpLocationOag6Code: string; /** * Promotional Coupon */ promotionalCoupon?: string; /** * Rate Code */ rateCode?: string; systemId?: string; /** * Travel Agent Number */ travelAgentNumber?: string; /** * Vehicle Preference */ vehiclePreference?: string; /** * Voucher Number */ voucherNumber?: string; }