import { DomainObject } from "./domain-object"; import { InventLocation } from "./invent-location"; import { WMSLocation } from "./wms-location"; import { WMSPalletType } from "./wms-pallet-type"; import { Project } from "./project"; import { Customer } from "./customer"; import { Beacon } from "./beacon"; import { Barcode } from "./barcode"; import { ProjectLocation } from "./project-location"; export declare class WMSPallet extends DomainObject { PalletId?: string | undefined; SSCC_Code?: string | undefined; Active?: boolean | undefined; DeActivated?: Date | undefined; WeightInKg?: number | undefined; CubicMeters?: number | undefined; Length?: number | undefined; Width?: number | undefined; Height?: number | undefined; AddressId?: string | undefined; Address?: ProjectLocation | undefined; TypeId?: string | undefined; Type?: WMSPalletType | undefined; PalletTypeValue?: number | undefined; InventLocationId?: string | undefined; InventLocation?: InventLocation | undefined; WMSLocationId?: string | undefined; WMSLocation?: WMSLocation | undefined; CustomerId?: string | undefined; Customer?: Customer | undefined; ProjectId?: string | undefined; Project?: Project | undefined; BeaconId?: string | undefined; Beacon?: Beacon | undefined; Barcodes?: Barcode[] | undefined; External_CaseId?: string | undefined; External_PurchRef?: string | undefined; } //# sourceMappingURL=wms-pallet.d.ts.map