import { DomainObject } from "./domain-object"; import { BarcodeType } from "./barcode-type"; export declare class Barcode extends DomainObject { BarcodeString?: string | undefined; BarcodeTypeId?: string | undefined; BarcodeType?: BarcodeType | undefined; ProductId?: string | undefined; ColorId?: string | undefined; SizeId?: string | undefined; ConfigId?: string | undefined; PalletId?: string | undefined; WMSLocationId?: string | undefined; ContainerId?: string | undefined; ToadId?: string | undefined; PackagingBoxId?: string | undefined; PickingTableId?: string | undefined; ProductionId?: string | undefined; PurchaseLineId?: string | undefined; InventObjectId?: string | undefined; Qty?: number | undefined; } //# sourceMappingURL=barcode.d.ts.map