jspurefix
Version:
pure node js fix engine
60 lines (58 loc) • 2.26 kB
text/typescript
import { IStandardHeader } from './set/standard_header'
import { IApplicationSequenceControl } from './set/application_sequence_control'
import { IInstrument } from './set/instrument'
import { IInstrumentExtension } from './set/instrument_extension'
import { IParties } from './set/parties'
import { IFinancingDetails } from './set/financing_details'
import { IUndInstrmtGrp } from './set/und_instrmt_grp'
import { IRelatedInstrumentGrp } from './set/related_instrument_grp'
import { IOrderQtyData } from './set/order_qty_data'
import { IStipulations } from './set/stipulations'
import { IInstrmtLegIOIGrp } from './set/instrmt_leg_ioi_grp'
import { IIOIQualGrp } from './set/ioi_qual_grp'
import { IRoutingGrp } from './set/routing_grp'
import { ISpreadOrBenchmarkCurveData } from './set/spread_or_benchmark_curve_data'
import { IRelativeValueGrp } from './set/relative_value_grp'
import { IYieldData } from './set/yield_data'
/*
***************************************
* IOI can be found in Volume 3 of the *
* *
* specification *
***************************************
*/
export interface IIOI {
IOIID: string// 23
IOITransType: string// 28
IOIRefID?: string// 26
Side: string// 54
QtyType?: number// 854
IOIQty: string// 27
Currency?: string// 15
PriceType?: number// 423
Price?: number// 44
ValidUntilTime?: Date// 62
IOIQltyInd?: string// 25
IOINaturalFlag?: boolean// 130
Text?: string// 58
EncodedTextLen?: number// 354
EncodedText?: Buffer// 355
TransactTime?: Date// 60
URLLink?: string// 149
StandardHeader?: IStandardHeader
ApplicationSequenceControl?: IApplicationSequenceControl
Instrument?: IInstrument
InstrumentExtension?: IInstrumentExtension
Parties?: IParties[]
FinancingDetails?: IFinancingDetails
UndInstrmtGrp?: IUndInstrmtGrp[]
RelatedInstrumentGrp?: IRelatedInstrumentGrp[]
OrderQtyData?: IOrderQtyData
Stipulations?: IStipulations[]
InstrmtLegIOIGrp?: IInstrmtLegIOIGrp[]
IOIQualGrp?: IIOIQualGrp[]
RoutingGrp?: IRoutingGrp[]
SpreadOrBenchmarkCurveData?: ISpreadOrBenchmarkCurveData
RelativeValueGrp?: IRelativeValueGrp[]
YieldData?: IYieldData
}