jspurefix
Version:
pure node js fix engine
17 lines (15 loc) • 753 B
text/typescript
import { IStandardHeader } from './set/standard_header'
import { IQuotReqGrp } from './set/quot_req_grp'
import { IStandardTrailer } from './set/standard_trailer'
export interface IQuoteRequest {
StandardHeader: IStandardHeader// [1] BeginString.8, BodyLength.9 .. HopRefID.630
QuoteReqID: string// [2] 131 (String)
RFQReqID?: string// [3] 644 (String)
ClOrdID?: string// [4] 11 (String)
OrderCapacity?: string// [5] 528 (String)
QuotReqGrp?: IQuotReqGrp// [6] NoRelatedSym.146, Symbol.55 .. PartySubIDType.803
Text?: string// [7] 58 (String)
EncodedTextLen?: number// [8] 354 (Length)
EncodedText?: Buffer// [9] 355 (RawData)
StandardTrailer: IStandardTrailer// [10] SignatureLength.93, Signature.89, CheckSum.10
}