jspurefix
Version:
pure node js fix engine
61 lines (59 loc) • 3.35 kB
text/typescript
import { IStandardHeader } from './set/standard_header'
import { IParties } from './set/parties'
import { IExecCollGrp } from './set/exec_coll_grp'
import { ITrdCollGrp } from './set/trd_coll_grp'
import { IInstrument } from './set/instrument'
import { IFinancingDetails } from './set/financing_details'
import { IInstrmtLegGrp } from './set/instrmt_leg_grp'
import { IUndInstrmtCollGrp } from './set/und_instrmt_coll_grp'
import { ITrdRegTimestamps } from './set/trd_reg_timestamps'
import { IMiscFeesGrp } from './set/misc_fees_grp'
import { ISpreadOrBenchmarkCurveData } from './set/spread_or_benchmark_curve_data'
import { IStipulations } from './set/stipulations'
import { IStandardTrailer } from './set/standard_trailer'
export interface ICollateralResponse {
StandardHeader: IStandardHeader// [1] BeginString.8, BodyLength.9 .. HopRefID.630
CollRespID: string// [2] 904 (String)
CollAsgnID: string// [3] 902 (String)
CollReqID?: string// [4] 894 (String)
CollAsgnReason: number// [5] 895 (Int)
CollAsgnTransType?: number// [6] 903 (Int)
CollAsgnRespType: number// [7] 905 (Int)
CollAsgnRejectReason?: number// [8] 906 (Int)
TransactTime: Date// [9] 60 (UtcTimestamp)
Parties?: IParties// [10] NoPartyIDs.453, PartyID.448 .. PartySubIDType.803
Account?: string// [11] 1 (String)
AccountType?: number// [12] 581 (Int)
ClOrdID?: string// [13] 11 (String)
OrderID?: string// [14] 37 (String)
SecondaryOrderID?: string// [15] 198 (String)
SecondaryClOrdID?: string// [16] 526 (String)
ExecCollGrp?: IExecCollGrp// [17] NoExecs.124, ExecID.17
TrdCollGrp?: ITrdCollGrp// [18] NoTrades.897, TradeReportID.571, SecondaryTradeReportID.818
Instrument?: IInstrument// [19] Symbol.55, SymbolSfx.65 .. InterestAccrualDate.874
FinancingDetails?: IFinancingDetails// [20] AgreementDesc.913, AgreementID.914 .. MarginRatio.898
SettlDate?: Date// [21] 64 (LocalDate)
Quantity?: number// [22] 53 (Float)
QtyType?: number// [23] 854 (Int)
Currency?: string// [24] 15 (String)
InstrmtLegGrp?: IInstrmtLegGrp// [25] NoLegs.555, LegSymbol.600 .. LegInterestAccrualDate.956
UndInstrmtCollGrp?: IUndInstrmtCollGrp// [26] NoUnderlyings.711, UnderlyingSymbol.311 .. CollAction.944
MarginExcess?: number// [27] 899 (Float)
TotalNetValue?: number// [28] 900 (Float)
CashOutstanding?: number// [29] 901 (Float)
TrdRegTimestamps?: ITrdRegTimestamps// [30] NoTrdRegTimestamps.768, TrdRegTimestamp.769 .. TrdRegTimestampOrigin.771
Side?: string// [31] 54 (String)
MiscFeesGrp?: IMiscFeesGrp// [32] NoMiscFees.136, MiscFeeAmt.137 .. MiscFeeBasis.891
Price?: number// [33] 44 (Float)
PriceType?: number// [34] 423 (Int)
AccruedInterestAmt?: number// [35] 159 (Float)
EndAccruedInterestAmt?: number// [36] 920 (Float)
StartCash?: number// [37] 921 (Float)
EndCash?: number// [38] 922 (Float)
SpreadOrBenchmarkCurveData?: ISpreadOrBenchmarkCurveData// [39] Spread.218, BenchmarkCurveCurrency.220 .. BenchmarkSecurityIDSource.761
Stipulations?: IStipulations// [40] NoStipulations.232, StipulationType.233, StipulationValue.234
Text?: string// [41] 58 (String)
EncodedTextLen?: number// [42] 354 (Length)
EncodedText?: Buffer// [43] 355 (RawData)
StandardTrailer: IStandardTrailer// [44] SignatureLength.93, Signature.89, CheckSum.10
}