ofx4js
Version:
A javascript OFX library, ported from OFX4J
23 lines (22 loc) • 843 B
TypeScript
import { InvestmentStatementResponse } from "./InvestmentStatementResponse";
import { TransactionWrappedResponseMessage } from "../../TransactionWrappedResponseMessage";
/**
* Investment statement transaction response.
* @see "Section 13.9.2.1, OFX Spec"
*/
export declare class InvestmentStatementResponseTransaction extends TransactionWrappedResponseMessage<InvestmentStatementResponse> {
private message;
/**
* Gets the the statement response message.
*
* @return the statement response message.
*/
getMessage(): InvestmentStatementResponse;
/**
* Sets the the statement response message.
*
* @param message the statement response message.
*/
setMessage(message: InvestmentStatementResponse): void;
getWrappedMessage(): InvestmentStatementResponse;
}