ofx4js
Version:
A javascript OFX library, ported from OFX4J
164 lines (163 loc) • 3.84 kB
TypeScript
import { PayerAddress } from "./PayerAddress";
import { RecAddress } from "./RecAddress";
export declare class Tax1099DIV {
private srvrtId;
private taxYear;
private ordDiv;
private qualifiedDiv;
private totCapGain;
private p28Gain;
private unrecSec1250;
private sec1202;
private nonTaxDist;
private fedTaxWh;
private investExp;
private forTaxPd;
private cashLiq;
private nonCashLiq;
private payerAddress;
private payerId;
private recAddress;
private recId;
private recAcct;
getSrvrtId(): string;
setSrvrtId(srvrtId: string): void;
getTaxYear(): string;
setTaxYear(taxYear: string): void;
/**
* @return the ordDiv
*/
getOrdDiv(): string;
/**
* @param ordDiv the ordDiv to set
*/
setOrdDiv(ordDiv: string): void;
/**
* @return the qualifiedDiv
*/
getQualifiedDiv(): string;
/**
* @param qualifiedDiv the qualifiedDiv to set
*/
setQualifiedDiv(qualifiedDiv: string): void;
/**
* @return the totCapGain
*/
getTotCapGain(): string;
/**
* @param totCapGain the totCapGain to set
*/
setTotCapGain(totCapGain: string): void;
/**
* @return the p28Gain
*/
getP28Gain(): string;
/**
* @param p28Gain the p28Gain to set
*/
setP28Gain(p28Gain: string): void;
/**
* @return the unrecSec1250
*/
getUnrecSec1250(): string;
/**
* @param unrecSec1250 the unrecSec1250 to set
*/
setUnrecSec1250(unrecSec1250: string): void;
/**
* @return the sec1202
*/
getSec1202(): string;
/**
* @param sec1202 the sec1202 to set
*/
setSec1202(sec1202: string): void;
/**
* @return the nonTaxDist
*/
getNonTaxDist(): string;
/**
* @param nonTaxDist the nonTaxDist to set
*/
setNonTaxDist(nonTaxDist: string): void;
/**
* @return the fedTaxWh
*/
getFedTaxWh(): string;
/**
* @param fedTaxWh the fedTaxWh to set
*/
setFedTaxWh(fedTaxWh: string): void;
/**
* @return the investExp
*/
getInvestExp(): string;
/**
* @param investExp the investExp to set
*/
setInvestExp(investExp: string): void;
/**
* @return the forTaxPd
*/
getForTaxPd(): string;
/**
* @param forTaxPd the forTaxPd to set
*/
setForTaxPd(forTaxPd: string): void;
/**
* @return the cashLiq
*/
getCashLiq(): string;
/**
* @param cashLiq the cashLiq to set
*/
setCashLiq(cashLiq: string): void;
/**
* @return the nonCashLiq
*/
getNonCashLiq(): string;
/**
* @param nonCashLiq the nonCashLiq to set
*/
setNonCashLiq(nonCashLiq: 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;
}