import { DomainObject } from "./domain-object"; import { InventContainer } from "./invent-container"; import { Location } from "./location"; import { LocationSite } from "./location-site"; import { WMSLocation } from "./wms-location"; export declare class InventLocation extends DomainObject { InventLocationId?: string | undefined; LocationId?: string | undefined; Location?: Location | undefined; WmsLocations?: WMSLocation[] | undefined; Containers?: InventContainer[] | undefined; Active?: boolean | undefined; Length?: number | undefined; Width?: number | undefined; Height?: number | undefined; SiteId?: string | undefined; Site?: LocationSite | undefined; } //# sourceMappingURL=invent-location.d.ts.map