UNPKG

jspurefix

Version:
42 lines (40 loc) 1.45 kB
import { IStandardHeader } from './set/standard_header' import { IInstrument } from './set/instrument' import { IInstrumentExtension } from './set/instrument_extension' import { IFinancingDetails } from './set/financing_details' import { IInstrmtLegGrp } from './set/instrmt_leg_grp' import { IUndInstrmtGrp } from './set/und_instrmt_grp' import { IRelatedInstrumentGrp } from './set/related_instrument_grp' /* ************************************************* * Advertisement can be found in Volume 3 of the * * * * specification * ************************************************* */ export interface IAdvertisement { AdvId: string// 2 AdvTransType: string// 5 AdvRefID?: string// 3 AdvSide: string// 4 Quantity: number// 53 QtyType?: number// 854 Price?: number// 44 Currency?: string// 15 TradeDate?: Date// 75 TransactTime?: Date// 60 Text?: string// 58 EncodedTextLen?: number// 354 EncodedText?: Buffer// 355 URLLink?: string// 149 LastMkt?: string// 30 TradingSessionID?: string// 336 TradingSessionSubID?: string// 625 StandardHeader?: IStandardHeader Instrument?: IInstrument InstrumentExtension?: IInstrumentExtension FinancingDetails?: IFinancingDetails InstrmtLegGrp?: IInstrmtLegGrp[] UndInstrmtGrp?: IUndInstrmtGrp[] RelatedInstrumentGrp?: IRelatedInstrumentGrp[] }