import { PriceSchedule } from './PriceSchedule'; import { Inventory } from './Inventory'; export interface BuyerProduct { readonly PriceSchedule?: PriceSchedule; ID?: string; Name?: string; Description?: string; QuantityMultiplier?: number; ShipWeight?: number; ShipHeight?: number; ShipWidth?: number; ShipLength?: number; Active?: boolean; readonly SpecCount?: number; readonly VariantCount?: number; ShipFromAddressID?: string; Inventory?: Inventory; DefaultSupplierID?: string; AllSuppliersCanSell?: boolean; Returnable?: boolean; xp?: TBuyerProductXp; }