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

Hierarchy (View Summary)

Properties

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