ofx4js
Version:
A javascript OFX library, ported from OFX4J
26 lines (25 loc) • 776 B
TypeScript
import { FinancialInstitutionData } from "../FinancialInstitutionData";
/**
* Base bean for FI data.
*/
export declare class BaseFinancialInstitutionData implements FinancialInstitutionData {
private id;
private fid;
private name;
private organization;
private ofxUrl;
private brokerId;
constructor(id?: string);
getId(): string;
setId(id: string): void;
getFinancialInstitutionId(): string;
setFinancialInstitutionId(id: string): void;
getName(): string;
setName(name: string): void;
getOrganization(): string;
setOrganization(organization: string): void;
getOFXURL(): string;
setOFXURL(OFXURL: string): void;
getBrokerId(): string;
setBrokerId(brokerId: string): void;
}