import { DomainObject } from "./domain-object"; import { SalesLine } from "./sales-line"; import { WMSLocation } from "./wms-location"; import { InventLocation } from "./invent-location"; import { Product } from "./product"; import { ColorDimension } from "./color-dimension"; import { SizeDimension } from "./size-dimension"; import { ConfigDimension } from "./config-dimension"; import { Shipment } from "./shipment"; import { UserType, PickingLineStatus } from "./all.enum"; import { Employee } from "./employee"; import { WMSPallet } from "./wms-pallet"; import { Batch } from "./batch"; export declare class PickingLine extends DomainObject { PickingListId: string | undefined; LineId: string | undefined; Note: string | undefined; SalesLineId: string | undefined; SalesLine: SalesLine | undefined; ProductId: string | undefined; Product: Product | undefined; Qty: number | undefined; QtyPick: number | undefined; ColorId: string | undefined; Color: ColorDimension | undefined; SizeId: string | undefined; Size: SizeDimension | undefined; ConfigId: string | undefined; Config: ConfigDimension | undefined; InventLocationId: string | undefined; InventLocation: InventLocation | undefined; WMSLocationId: string | undefined; WMSLocation: WMSLocation | undefined; SortCode: string | undefined; WMSZone: string | undefined; ShipmentId: string | undefined; Shipment: Shipment | undefined; EmployeeId: string | undefined; Employee: Employee | undefined; WMSPalletId: string | undefined; WMSPallet: WMSPallet | undefined; BatchId: string | undefined; Batch: Batch | undefined; ApprovedDate?: Date | undefined; Id_ApprovedBy?: string | undefined; UserType_ApprovedBy?: UserType | undefined; Status?: PickingLineStatus | undefined; QA_QtyValidated: number | undefined; QA_QtyValidatedTime?: Date | undefined; QA_QtyValidatedById: string | undefined; QA_QtyValidatedBy_UserType?: UserType | undefined; } //# sourceMappingURL=picking-line.d.ts.map