interface Quantity {
    optionId?: number;
    optionLabel: string;
    optionPrice?: number;
    value: number;
}

Properties

optionId?: number
optionLabel: string
optionPrice?: number
value: number