ofx4js
Version:
A javascript OFX library, ported from OFX4J
14 lines (13 loc) • 410 B
TypeScript
/**
* Other Enrollment option containing a text message directing users to some other method (such as a phone call)
* @see "Section 8.8 OFX Spec"
*/
export declare class OtherEnrollment {
private message;
/**
* Message to consumer about what to do next (for example, a phone number),
* @return String
*/
getMessage(): string;
setMessage(message: string): void;
}