ofx4js
Version:
A javascript OFX library, ported from OFX4J
12 lines (11 loc) • 498 B
TypeScript
import { VersionSpecificMessageSetInfo } from "../VersionSpecificMessageSetInfo";
import { MessageSetType } from "../../MessageSetType";
/**
* @see "Section 13.7.2.1, OFX Spec"
*/
export declare class SecurityListV1MessageSetInfo extends VersionSpecificMessageSetInfo {
private supportsSecurityListDownload;
getMessageSetType(): MessageSetType;
getSupportsSecurityListDownload(): boolean;
setSupportsSecurityListDownload(supportsSecurityListDownload: boolean): void;
}