jspurefix
Version:
pure node js fix engine
39 lines (37 loc) • 1.36 kB
text/typescript
import { IStandardHeader } from './set/standard_header'
import { IInstrument } from './set/instrument'
import { IParties } from './set/parties'
import { IRegulatoryTradeIDGrp } from './set/regulatory_trade_id_grp'
import { IAllocAckGrp } from './set/alloc_ack_grp'
/*
************************************************************
* AllocationInstructionAck can be found in Volume 5 of the *
* *
* specification *
************************************************************
*/
export interface IAllocationInstructionAck {
AllocID: string// 70
SecondaryAllocID?: string// 793
AllocGroupID?: string// 1730
FirmGroupID?: string// 1728
AvgPxGroupID?: string// 1731
TradeDate?: Date// 75
TransactTime?: Date// 60
AllocStatus: number// 87
AllocRejCode?: number// 88
AllocType?: number// 626
AllocIntermedReqType?: number// 808
MatchStatus?: string// 573
Text?: string// 58
EncodedTextLen?: number// 354
EncodedText?: Buffer// 355
RejectText?: string// 1328
EncodedRejectTextLen?: number// 1664
EncodedRejectText?: Buffer// 1665
StandardHeader?: IStandardHeader
Instrument?: IInstrument
Parties?: IParties[]
RegulatoryTradeIDGrp?: IRegulatoryTradeIDGrp[]
AllocAckGrp?: IAllocAckGrp[]
}