import { TransactionTypeOptions } from '../../enum';
export interface ILedgerTransactionAttr {
    LedgerNo?: string;
    TransactionType?: TransactionTypeOptions;
    JournalEntryId?: string;
    AccountNo?: string;
    Date?: Date;
    Name?: string;
    Description?: string;
    Currency?: string;
    DebitAmount?: number;
    CreditAmount?: number;
    RelatedObjectId?: string;
    RelatedObjectType?: string;
    RelatedDocNo?: string;
    RelatedPaymentId?: string;
}
//# sourceMappingURL=ledger-transaction-attr.interface.d.ts.map