interface FinancialBookingAddOn {
    addOnId: string;
    deleted: boolean;
    quantity: number;
    service?: Service;
    type: AddOnTypes;
    unitPriceWithFee: number;
    user: string | User;
}

Hierarchy (View Summary)

  • AddOn
    • FinancialBookingAddOn

Properties

addOnId: string
deleted: boolean
quantity: number
service?: Service
unitPriceWithFee: number
user: string | User