ofx4js
Version:
A javascript OFX library, ported from OFX4J
84 lines (83 loc) • 1.92 kB
TypeScript
export declare class ProcDet {
private dtAqd;
private dtSale;
private secName;
private costBasis;
private saleSpr;
private longShort;
private wasDisAllowed;
private noncoveredSec;
private basisNotshown;
/**
* @return the dtAqd
*/
getDtAqd(): string;
/**
* @param dtAqd the dtAqd to set
*/
setDtAqd(dtAqd: string): void;
/**
* @return the dtSale
*/
getDtSale(): string;
/**
* @param dtSale the dtSale to set
*/
setDtSale(dtSale: string): void;
/**
* @return the secName
*/
getSecName(): string;
/**
* @param secName the secName to set
*/
setSecName(secName: string): void;
/**
* @return the costBasis
*/
getCostBasis(): string;
/**
* @param costBasis the costBasis to set
*/
setCostBasis(costBasis: string): void;
/**
* @return the saleSpr
*/
getSaleSpr(): string;
/**
* @param saleSpr the saleSpr to set
*/
setSaleSpr(saleSpr: string): void;
/**
* @return the longShort
*/
getLongShort(): string;
/**
* @param longShort the longShort to set
*/
setLongShort(longShort: string): void;
/**
* @return the wasDisAllowed
*/
getWasDisAllowed(): string;
/**
* @param wasDisAllowed the wasDisAllowed to set
*/
setWasDisAllowed(wasDisAllowed: string): void;
/**
* @return the noncoveredSec
*/
getNoncoveredSec(): string;
/**
* @param noncoveredSec the noncoveredSec to set
*/
setNoncoveredSec(noncoveredSec: string): void;
/**
* @return the basisNotshown
*/
getBasisNotshown(): string;
/**
* @param basisNotshown the basisNotshown to set
*/
setBasisNotshown(basisNotshown: string): void;
}