ofx4js
Version:
A javascript OFX library, ported from OFX4J
19 lines (18 loc) • 584 B
TypeScript
import { StatementResponse } from "../common/StatementResponse";
import { BankAccountDetails } from "./BankAccountDetails";
export declare class BankStatementResponse extends StatementResponse {
private account;
getResponseMessageName(): string;
/**
* The account for the statement.
*
* @return The account for the statement.
*/
getAccount(): BankAccountDetails;
/**
* The account for the statement.
*
* @param account The account for the statement.
*/
setAccount(account: BankAccountDetails): void;
}