interface BookingRepriceUpdate {
    additionalParticipants: (string | User | BookingCustomerProfile)[];
    addOns?: AddOn[];
    status: BookingStatus;
    totalAmount?: number;
    travelAmount: number;
}

Hierarchy

  • SetOptional<
        Pick<
            BaseBooking,
            | "totalAmount"
            | "travelAmount"
            | "additionalParticipants"
            | "addOns"
            | "status",
        >,
        "totalAmount",
    >
    • BookingRepriceUpdate

Properties

additionalParticipants: (string | User | BookingCustomerProfile)[]
addOns?: AddOn[]
totalAmount?: number
travelAmount: number