ofx4js
Version:
A javascript OFX library, ported from OFX4J
14 lines (13 loc) • 429 B
TypeScript
/**
* Client Enrollment option, contains indicator as to whether the account number is required as part of enrollment
* @see "Section 8.8 OFX Spec"
*/
export declare class ClientEnrollment {
private accountRequired;
/**
* Y if account number is required as part of enrollment
* @return Boolean
*/
getAccountRequired(): boolean;
setAccountRequired(accountRequired: boolean): void;
}