interface BookingRepriceResult {
    addOns?: AddOn[];
    bookingLedger?: BookingLedgerEvent[];
    dueAmount: number;
    dynamicRepriceAdjustments?: DynamicRepriceAdjustments;
    totalAmount: number;
    totalSpotsBooked: number;
    travelAmount: number;
}

Hierarchy

  • Pick<
        BaseBooking,
        | "travelAmount"
        | "totalAmount"
        | "dueAmount"
        | "totalSpotsBooked"
        | "bookingLedger"
        | "addOns",
    >
    • BookingRepriceResult

Properties

addOns?: AddOn[]
bookingLedger?: BookingLedgerEvent[]
dueAmount: number
dynamicRepriceAdjustments?: DynamicRepriceAdjustments
totalAmount: number
totalSpotsBooked: number
travelAmount: number