ofx4js
Version:
A javascript OFX library, ported from OFX4J
28 lines (27 loc) • 1.1 kB
TypeScript
import { ResponseMessageSet } from "../ResponseMessageSet";
import { SecurityListResponseTransaction } from "./SecurityListResponseTransaction";
import { SecurityList } from "./SecurityList";
import { MessageSetType } from "../MessageSetType";
import { ResponseMessage } from "../ResponseMessage";
export declare class SecurityListResponseMessageSet extends ResponseMessageSet {
private securityListResponse;
private securityList;
getType(): MessageSetType;
/**
* The security list response list transaction.
*
* Most OFX files have a single security response.
*
* @return The security list response list.
*/
getSecurityListResponse(): SecurityListResponseTransaction;
/**
* The security list response.
*
* @param securityListResponse The security list response.
*/
setSecurityListResponse(securityListResponse: SecurityListResponseTransaction): void;
getSecurityList(): SecurityList;
setSecurityList(securityList: SecurityList): void;
getResponseMessages(): Array<ResponseMessage>;
}