ofx4js
Version:
A javascript OFX library, ported from OFX4J
155 lines (154 loc) • 3.65 kB
TypeScript
import { PayerAddress } from "./PayerAddress";
import { RecAddress } from "./RecAddress";
export declare class Tax1099R {
private srvrtId;
private taxYear;
private grossDist;
private taxAmt;
private taxAmtNd;
private capGain;
private fedTaxWh;
private empContins;
private netUnapEmp;
private distCode;
private iraSepSimp;
private annCtrctDist;
private totEmpCount;
private payerAddress;
private payerId;
private recAddress;
private recId;
private recAcct;
getSrvrtId(): string;
setSrvrtId(srvrtId: string): void;
getTaxYear(): string;
setTaxYear(taxYear: string): void;
/**
* @return the grossDist
*/
getGrossDist(): string;
/**
* @param grossDist the grossDist to set
*/
setGrossDist(grossDist: string): void;
/**
* @return the taxAmt
*/
getTaxAmt(): string;
/**
* @param taxAmt the taxAmt to set
*/
setTaxAmt(taxAmt: string): void;
/**
* @return the taxAmtNd
*/
getTaxAmtNd(): string;
/**
* @param taxAmtNd the taxAmtNd to set
*/
setTaxAmtNd(taxAmtNd: string): void;
/**
* @return the capGain
*/
getCapGain(): string;
/**
* @param capGain the capGain to set
*/
setCapGain(capGain: string): void;
/**
* @return the fedTaxWh
*/
getFedTaxWh(): string;
/**
* @param fedTaxWh the fedTaxWh to set
*/
setFedTaxWh(fedTaxWh: string): void;
/**
* @return the empContins
*/
getEmpContins(): string;
/**
* @param empContins the empContins to set
*/
setEmpContins(empContins: string): void;
/**
* @return the netUnapEmp
*/
getNetUnapEmp(): string;
/**
* @param netUnapEmp the netUnapEmp to set
*/
setNetUnapEmp(netUnapEmp: string): void;
/**
* @return the distCode
*/
getDistCode(): string;
/**
* @param distCode the distCode to set
*/
setDistCode(distCode: string): void;
/**
* @return the iraSepSimp
*/
getIraSepSimp(): string;
/**
* @param iraSepSimp the iraSepSimp to set
*/
setIraSepSimp(iraSepSimp: string): void;
/**
* @return the annCtrctDist
*/
getAnnCtrctDist(): string;
/**
* @param annCtrctDist the annCtrctDist to set
*/
setAnnCtrctDist(annCtrctDist: string): void;
/**
* @return the totEmpCount
*/
getTotEmpCount(): string;
/**
* @param totEmpCount the totEmpCount to set
*/
setTotEmpCount(totEmpCount: 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;
}