interface CheckoutAddOn {
    email?: string;
    quantity: number;
    service?: string | Service;
    type: AddOnTypes;
    unitPriceWithFee: number;
}

Hierarchy (View Summary)

Properties

email?: string
quantity: number
service?: string | Service
unitPriceWithFee: number