import { DomainObject } from "./domain-object"; import { ContainerSizeType } from "./all.enum"; import { InventLocation } from "./invent-location"; import { Barcode } from "./barcode"; import { WMSLocation } from "./wms-location"; import { InventContainerType } from "./invent-container-type"; import { InventContainerLocation } from "./invent-container-location"; import { Customer } from "./customer"; import { Project } from "./project"; import { Beacon } from "./beacon"; export declare class InventContainer extends DomainObject { ContainerId?: string | undefined; Active?: boolean | undefined; SizeType?: ContainerSizeType | undefined; InventLocationId?: string | undefined; InventLocation?: InventLocation | undefined; WMSLocationId?: string | undefined; WMSLocation?: WMSLocation | undefined; Barcodes?: Barcode[] | undefined; SSCC_Code?: string | undefined; WeightInKg?: number | undefined; TypeId?: string | undefined; Type?: InventContainerType | undefined; CustomerId?: string | undefined; Customer?: Customer | undefined; ProjectId?: string | undefined; Project?: Project | undefined; BeaconId?: string | undefined; Beacon?: Beacon | undefined; ContainerTypeValue?: number | undefined; ContainerLocationId?: string | undefined; ContainerLocation?: InventContainerLocation | undefined; } //# sourceMappingURL=invent-container.d.ts.map