UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

49 lines (48 loc) 1.19 kB
import { ProcDet } from "./ProcDet"; export declare class ExtDBInfo { private procDet; private teInterest; private pabInterest; private teIntDividend; private pabDividend; /** * @return the procDet */ getProcDet(): Array<ProcDet>; /** * @param procDet the procDet to set */ setProcDet(procDet: Array<ProcDet>): void; /** * @return the teInterest */ getTeInterest(): string; /** * @param teInterest the teInterest to set */ setTeInterest(teInterest: string): void; /** * @return the pabInterest */ getPabInterest(): string; /** * @param pabInterest the pabInterest to set */ setPabInterest(pabInterest: string): void; /** * @return the teIntDividend */ getTeIntDividend(): string; /** * @param teIntDividend the teIntDividend to set */ setTeIntDividend(teIntDividend: string): void; /** * @return the pabDividend */ getPabDividend(): string; /** * @param pabDividend the pabDividend to set */ setPabDividend(pabDividend: string): void; }