ofx4js
Version:
A javascript OFX library, ported from OFX4J
92 lines (91 loc) • 2.17 kB
TypeScript
import { PayerAddress } from "./PayerAddress";
import { RecAddress } from "./RecAddress";
export declare class Tax1099MISC {
private srvrtId;
private taxYear;
private royalties;
private otherIncome;
private fedTaxWh;
private subPmts;
private payerAddress;
private payerId;
private recAddress;
private recId;
private recAcct;
getSrvrtId(): string;
setSrvrtId(srvrtId: string): void;
getTaxYear(): string;
setTaxYear(taxYear: string): void;
/**
* @return the royalties
*/
getRoyalties(): string;
/**
* @param royalties the royalties to set
*/
setRoyalties(royalties: string): void;
/**
* @return the otherIncome
*/
getOtherIncome(): string;
/**
* @param otherIncome the otherIncome to set
*/
setOtherIncome(otherIncome: string): void;
/**
* @return the fedTaxWh
*/
getFedTaxWh(): string;
/**
* @param fedTaxWh the fedTaxWh to set
*/
setFedTaxWh(fedTaxWh: string): void;
/**
* @return the subPmts
*/
getSubPmts(): string;
/**
* @param subPmts the subPmts to set
*/
setSubPmts(subPmts: 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;
}