ofx4js
Version:
A javascript OFX library, ported from OFX4J
29 lines (28 loc) • 620 B
TypeScript
export declare class FinancialInstitutionInfo {
private id;
private organization;
/**
* Financial institution id.
*
* @return Financial institution id.
*/
getId(): string;
/**
* Financial institution id.
*
* @param id Financial institution id.
*/
setId(id: string): void;
/**
* The organization.
*
* @return The organization.
*/
getOrganization(): string;
/**
* The organization.
*
* @param organization The organization.
*/
setOrganization(organization: string): void;
}