ofx4js
Version:
A javascript OFX library, ported from OFX4J
30 lines (29 loc) • 753 B
TypeScript
import { TransactionList } from "../domain/data/common/TransactionList";
import { BalanceInfo } from "../domain/data/common/BalanceInfo";
export interface AccountStatement {
/**
* The currency code.
*
* @return The currency code.
* @see java.util.Currency#getCurrencyCode()
*/
getCurrencyCode(): string;
/**
* The transaction list.
*
* @return The transaction list.
*/
getTransactionList(): TransactionList;
/**
* The ledger balance.
*
* @return The ledger balance.
*/
getLedgerBalance(): BalanceInfo;
/**
* The available balance.
*
* @return The available balance.
*/
getAvailableBalance(): BalanceInfo;
}