import { DomainObject } from "./domain-object"; import { Barcode } from "./barcode"; import { ProjectLocation } from "./project-location"; export declare class InventObject extends DomainObject { ObjectId?: string | undefined; Barcodes?: Barcode[] | undefined; CreateDate?: Date | undefined; ExpireDate?: Date | undefined; CubicMeters?: number | undefined; Length?: number | undefined; Width?: number | undefined; Height?: number | undefined; WeightInKg?: number | undefined; Active?: boolean | undefined; AddressId?: string | undefined; Address?: ProjectLocation | undefined; } //# sourceMappingURL=invent-object.d.ts.map