interface BookingInsuranceQuote {
    addOns: CheckoutAddOn[];
    insurancePlan: InsurancePlan;
    price: number;
}

Properties

addOns: CheckoutAddOn[]
insurancePlan: InsurancePlan
price: number