import { DomainObject } from "./domain-object"; import { InventLocation } from "./invent-location"; import { WMSLocation } from "./wms-location"; export declare class InventContainerLocation extends DomainObject { LocationId?: string | undefined; Active?: boolean | undefined; X?: number | undefined; Y?: number | undefined; Z?: number | undefined; InventLocationId?: string | undefined; InventLocation?: InventLocation | undefined; WMSLocationId?: string | undefined; WMSLocation?: WMSLocation | undefined; } //# sourceMappingURL=invent-container-location.d.ts.map