interface InsuranceQuoteRequest {
    departureDate: Date;
    depositDate: Date;
    insurancePlanId: string;
    returnDate: Date;
    traveler: InsuranceQuoteTraveler | InsuranceTraveler;
    tripCost: number;
    tripCountryCode: string;
}

Hierarchy (View Summary)

Properties

departureDate: Date
depositDate: Date
insurancePlanId: string
returnDate: Date
tripCost: number
tripCountryCode: string