mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
38 lines
741 B
TypeScript
38 lines
741 B
TypeScript
import { INumberFormatQuery } from '../../FinancialStatements';
|
|
|
|
export interface ICashflowAccountTransactionsQuery {
|
|
page: number;
|
|
pageSize: number;
|
|
accountId: number;
|
|
numberFormat: INumberFormatQuery;
|
|
}
|
|
|
|
export interface ICashflowAccountTransaction {
|
|
withdrawal: number;
|
|
deposit: number;
|
|
runningBalance: number;
|
|
|
|
formattedWithdrawal: string;
|
|
formattedDeposit: string;
|
|
formattedRunningBalance: string;
|
|
|
|
transactionNumber: string;
|
|
referenceNumber: string;
|
|
|
|
referenceId: number;
|
|
referenceType: string;
|
|
|
|
formattedTransactionType: string;
|
|
|
|
balance: number;
|
|
formattedBalance: string;
|
|
|
|
date: Date;
|
|
formattedDate: string;
|
|
|
|
status: string;
|
|
formattedStatus: string;
|
|
|
|
uncategorizedTransactionId: number;
|
|
}
|