import { DomainObject } from "./domain-object"; import { DebitCreditType, BankReconciliationJournalLineStatus, BankReconciliationJournalLineType, UserType } from "./all.enum"; import { BankReconciliationJournal } from "./bank-reconciliation-journal"; import { POSTerminal } from "./pos-terminal"; import { LedgerAccount } from "./ledger-account"; import { Employee } from "./employee"; import { Currency } from "./currency"; export declare class BankReconciliationJournalLine extends DomainObject { LineId?: string | undefined; TransactionNo?: number | undefined; JournalId?: string | undefined; Journal?: BankReconciliationJournal | undefined; Date?: Date | undefined; POSTerminalId?: string | undefined; POSTerminal?: POSTerminal | undefined; AccountId?: string | undefined; Account?: LedgerAccount | undefined; EmployeeId?: string | undefined; Employee?: Employee | undefined; DebitCredit?: DebitCreditType | undefined; CurrencyId?: string | undefined; Currency?: Currency | undefined; Amount?: number | undefined; Text?: string | undefined; MetaData?: string | undefined; Status?: BankReconciliationJournalLineStatus | undefined; Type?: BankReconciliationJournalLineType | undefined; Id_ApprovedBy?: string | undefined; UserType_ApprovedBy?: UserType | undefined; ApprovedDate?: Date | undefined; } //# sourceMappingURL=bank-reconciliation-line.d.ts.map