/** * @type ProductPriceTable: Tiered Price Level Object * * @property price: Price for the product for the specified tier for the specified pricebook * * @property pricebook: The active pricebook for which this price is defined * * @property quantity: Quantity tier for which the price is defined. * */ export type ProductPriceTable = { price?: number; pricebook?: string; quantity?: number; } & { [key: string]: any; };