feature-libs/product/bulk-pricing/core/model/bulk-price.model.ts
Properties |
|
| currencyIso |
currencyIso:
|
Type : string
|
| Optional |
| discount |
discount:
|
Type : number
|
| Optional |
| formattedDiscount |
formattedDiscount:
|
Type : string
|
| Optional |
| formattedValue |
formattedValue:
|
Type : string
|
| Optional |
| maxQuantity |
maxQuantity:
|
Type : number
|
| Optional |
| minQuantity |
minQuantity:
|
Type : number
|
| Optional |
| priceType |
priceType:
|
Type : string
|
| Optional |
| value |
value:
|
Type : number
|
| Optional |
export interface BulkPrice {
currencyIso?: string;
formattedValue?: string;
maxQuantity?: number;
minQuantity?: number;
priceType?: string;
value?: number;
formattedDiscount?: string;
discount?: number;
}