interface BookingCheckout {
    additionalParticipants: BaseUser[];
    addOnsSelected: AddOnsSelected[];
    couponUsed: boolean;
    customer: BaseUser;
    dueAmount: number;
    paidAmount: number;
    paymentInfo: Omit<PaymentInfo, "waitlisted">;
    totalAmount: number;
    totalSpotsBooked: number;
    travelAmount: number;
    tripId: string;
    waitlisted: boolean;
}

Properties

additionalParticipants: BaseUser[]
addOnsSelected: AddOnsSelected[]
couponUsed: boolean
customer: BaseUser
dueAmount: number
paidAmount: number
paymentInfo: Omit<PaymentInfo, "waitlisted">
totalAmount: number
totalSpotsBooked: number
travelAmount: number
tripId: string
waitlisted: boolean