ofx4js
Version:
A javascript OFX library, ported from OFX4J
20 lines (19 loc) • 623 B
TypeScript
import { AbstractMessageSetInfo } from "./AbstractMessageSetInfo";
/**
* @see "Section 7.2, OFX Spec"
*/
export declare class MessageSetInfoList {
private informationList;
/**
* The list of information for each message set.
*
* @return The list of information for each message set.
*/
getInformationList(): Array<AbstractMessageSetInfo>;
/**
* The list of information for each message set.
*
* @param informationList The list of information for each message set.
*/
setInformationList(informationList: Array<AbstractMessageSetInfo>): void;
}