jspurefix
Version:
pure node js fix engine
59 lines (58 loc) • 1.85 kB
TypeScript
/// <reference types="node" />
import { IStandardHeader } from './set/standard_header';
import { IStandardTrailer } from './set/standard_trailer';
export interface ISecurityDefinition {
StandardHeader: IStandardHeader;
SecurityReqID: string;
SecurityResponseID: string;
SecurityResponseType?: number;
TotalNumSecurities: number;
Symbol?: string;
SymbolSfx?: string;
SecurityID?: string;
IDSource?: string;
SecurityType?: string;
MaturityMonthYear?: string;
MaturityDay?: number;
PutOrCall?: number;
StrikePrice?: number;
OptAttribute?: string;
ContractMultiplier?: number;
CouponRate?: number;
SecurityExchange?: string;
Issuer?: string;
EncodedIssuerLen?: number;
EncodedIssuer?: Buffer;
SecurityDesc?: string;
EncodedSecurityDescLen?: number;
EncodedSecurityDesc?: Buffer;
Currency?: string;
TradingSessionID?: string;
Text?: string;
EncodedTextLen?: number;
EncodedText?: Buffer;
NoRelatedSym?: number;
UnderlyingSymbol?: string;
UnderlyingSymbolSfx?: string;
UnderlyingSecurityID?: string;
UnderlyingIDSource?: string;
UnderlyingSecurityType?: string;
UnderlyingMaturityMonthYear?: string;
UnderlyingMaturityDay?: number;
UnderlyingPutOrCall?: number;
UnderlyingStrikePrice?: number;
UnderlyingOptAttribute?: string;
UnderlyingContractMultiplier?: number;
UnderlyingCouponRate?: number;
UnderlyingSecurityExchange?: string;
UnderlyingIssuer?: string;
EncodedUnderlyingIssuerLen?: number;
EncodedUnderlyingIssuer?: Buffer;
UnderlyingSecurityDesc?: string;
EncodedUnderlyingSecurityDescLen?: number;
EncodedUnderlyingSecurityDesc?: Buffer;
RatioQty?: number;
Side?: string;
UnderlyingCurrency?: string;
StandardTrailer: IStandardTrailer;
}