import { DomainObject } from "./domain-object"; import { TransferJournal } from "./transfer-journal"; import { Employee } from "./employee"; import { Product } from "./product"; import { InventLocation } from "./invent-location"; import { WMSLocation } from "./wms-location"; import { JournalLineStatus, UserType } from "./all.enum"; import { ColorDimension } from "./color-dimension"; import { SizeDimension } from "./size-dimension"; import { ConfigDimension } from "./config-dimension"; import { ServiceObject } from "./service-object"; export declare class TransferJournalLine extends DomainObject { JournalLineId?: string | undefined; Date?: Date | undefined; EmployeeId?: string | undefined; Employee?: Employee | undefined; JournalId?: string | undefined; Journal?: TransferJournal | undefined; ProductId?: string | undefined; Product?: Product | undefined; InventLocationFromId?: string | undefined; InventLocationFrom?: InventLocation | undefined; InventLocationToId?: string | undefined; InventLocationTo?: InventLocation | undefined; WMSLocationFromId?: string | undefined; WMSLocationFrom?: WMSLocation | undefined; WMSLocationToId?: string | undefined; WMSLocationTo?: WMSLocation | undefined; ColorId?: string | undefined; Color?: ColorDimension | undefined; SizeId?: string | undefined; Size?: SizeDimension | undefined; ConfigId?: string | undefined; Config?: ConfigDimension | undefined; Qty?: number | undefined; OnHold?: boolean | undefined; ServiceObjectId?: string | undefined; ServiceObject?: ServiceObject | undefined; ApprovedById?: string | undefined; ApprovedBy?: Employee | undefined; ApprovedDate?: Date | undefined; Id_ApprovedBy?: string | undefined; UserType_ApprovedBy?: UserType | undefined; Status?: JournalLineStatus | undefined; PhysicalDate?: Date | undefined; FinanceDate?: Date | undefined; get StatusString(): string | undefined; } //# sourceMappingURL=transfer-journal-line.d.ts.map