UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

119 lines (118 loc) 2.82 kB
import { PayerAddress } from "./PayerAddress"; import { RecAddress } from "./RecAddress"; export declare class Tax1099OID { private srvrtId; private taxYear; private originalDisc; private otherPerInt; private erlWithPen; private fedTaxWh; private desc; private oidOnUstres; private investExp; private payerAddress; private payerId; private recAddress; private recId; private recAcct; getSrvrtId(): string; setSrvrtId(srvrtId: string): void; getTaxYear(): string; setTaxYear(taxYear: string): void; /** * @return the originalDisc */ getOriginalDisc(): string; /** * @param originalDisc the originalDisc to set */ setOriginalDisc(originalDisc: string): void; /** * @return the otherPerInt */ getOtherPerInt(): string; /** * @param otherPerInt the otherPerInt to set */ setOtherPerInt(otherPerInt: string): void; /** * @return the erlWithPen */ getErlWithPen(): string; /** * @param erlWithPen the erlWithPen to set */ setErlWithPen(erlWithPen: string): void; /** * @return the fedTaxWh */ getFedTaxWh(): string; /** * @param fedTaxWh the fedTaxWh to set */ setFedTaxWh(fedTaxWh: string): void; /** * @return the desc */ getDesc(): string; /** * @param desc the desc to set */ setDesc(desc: string): void; /** * @return the oidOnUstres */ getOidOnUstres(): string; /** * @param oidOnUstres the oidOnUstres to set */ setOidOnUstres(oidOnUstres: string): void; /** * @return the investExp */ getInvestExp(): string; /** * @param investExp the investExp to set */ setInvestExp(investExp: string): void; /** * @return the payerAddress */ getPayerAddress(): PayerAddress; /** * @param payerAddress the payerAddress to set */ setPayerAddress(payerAddress: PayerAddress): void; /** * @return the payerId */ getPayerId(): string; /** * @param payerId the payerId to set */ setPayerId(payerId: string): void; /** * @return the recAddress */ getRecAddress(): RecAddress; /** * @param recAddress the recAddress to set */ setRecAddress(recAddress: RecAddress): void; /** * @return the recId */ getRecId(): string; /** * @param recId the recId to set */ setRecId(recId: string): void; /** * @return the recAcct */ getRecAcct(): string; /** * @param recAcct the recAcct to set */ setRecAcct(recAcct: string): void; }