interface InsurancePurchaseRequest {
    bookingId?: string;
    bookingStatus: BookingStatus;
    departureDate: Date;
    depositDate: Date;
    insurancePlanId: string;
    policyCost: number;
    returnDate: Date;
    traveler: InsuranceTraveler;
    tripCost: number;
    tripCountryCode: string;
    tripId: string;
}

Hierarchy (View Summary)

Properties

bookingId?: string
bookingStatus: BookingStatus
departureDate: Date
depositDate: Date
insurancePlanId: string
policyCost: number
returnDate: Date
tripCost: number
tripCountryCode: string
tripId: string