jspurefix
Version:
pure node js fix engine
59 lines (58 loc) • 1.92 kB
TypeScript
/// <reference types="node" />
import { IStandardHeader } from './set/standard_header';
import { IStandardTrailer } from './set/standard_trailer';
export interface IQuoteAcknowledgement {
StandardHeader: IStandardHeader;
QuoteReqID?: string;
QuoteID?: string;
QuoteAckStatus: number;
QuoteRejectReason?: number;
QuoteResponseLevel?: number;
TradingSessionID?: string;
Text?: string;
NoQuoteSets?: number;
QuoteSetID?: string;
UnderlyingSymbol?: string;
UnderlyingSymbolSfx?: string;
UnderlyingSecurityID?: string;
UnderlyingIDSource?: string;
UnderlyingSecurityType?: string;
UnderlyingMaturityMonthYear?: string;
UnderlyingMaturityDay?: string;
UnderlyingPutOrCall?: number;
UnderlyingStrikePrice?: number;
UnderlyingOptAttribute?: string;
UnderlyingContractMultiplier?: number;
UnderlyingCouponRate?: number;
UnderlyingSecurityExchange?: string;
UnderlyingIssuer?: string;
EncodedUnderlyingIssuerLen?: number;
EncodedUnderlyingIssuer?: Buffer;
UnderlyingSecurityDesc?: string;
EncodedUnderlyingSecurityDescLen?: number;
EncodedUnderlyingSecurityDesc?: Buffer;
TotQuoteEntries?: number;
NoQuoteEntries?: number;
QuoteEntryID?: string;
Symbol?: string;
SymbolSfx?: string;
SecurityID?: string;
IDSource?: string;
SecurityType?: string;
MaturityMonthYear?: string;
MaturityDay?: string;
PutOrCall?: number;
StrikePrice?: number;
OptAttribute?: string;
ContractMultiplier?: number;
CouponRate?: number;
SecurityExchange?: string;
Issuer?: string;
EncodedIssuerLen?: number;
EncodedIssuer?: Buffer;
SecurityDesc?: string;
EncodedSecurityDescLen?: number;
EncodedSecurityDesc?: Buffer;
QuoteEntryRejectReason?: number;
StandardTrailer: IStandardTrailer;
}