jspurefix
Version:
pure node js fix engine
34 lines (33 loc) • 976 B
TypeScript
/// <reference types="node" />
import { IStandardHeader } from './set/standard_header';
import { IStandardTrailer } from './set/standard_trailer';
export interface IQuoteCancel {
StandardHeader: IStandardHeader;
QuoteReqID?: string;
QuoteID: string;
QuoteCancelType: number;
QuoteResponseLevel?: number;
TradingSessionID?: string;
NoQuoteEntries: 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;
UnderlyingSymbol?: string;
StandardTrailer: IStandardTrailer;
}