ofx4js
Version:
A javascript OFX library, ported from OFX4J
17 lines (16 loc) • 462 B
TypeScript
import { SecurityId } from "./SecurityId";
/**
* Security request aggregate.
* @see "Section 13.8.2.2, OFX Spec"
*/
export declare class SecurityRequest {
private securityId;
private tickerSymbol;
private fiId;
getSecurityId(): SecurityId;
setSecurityId(securityId: SecurityId): void;
getTickerSymbol(): string;
setTickerSymbol(tickerSymbol: string): void;
getFiId(): string;
setFiId(fiId: string): void;
}