UNPKG

jspurefix

Version:
61 lines (60 loc) 2.17 kB
/// <reference types="node" /> 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; CollRespID: string; CollAsgnID: string; CollReqID?: string; CollAsgnReason: number; CollAsgnTransType?: number; CollAsgnRespType: number; CollAsgnRejectReason?: number; TransactTime: Date; Parties?: IParties[]; Account?: string; AccountType?: number; ClOrdID?: string; OrderID?: string; SecondaryOrderID?: string; SecondaryClOrdID?: string; ExecCollGrp?: IExecCollGrp[]; TrdCollGrp?: ITrdCollGrp[]; Instrument?: IInstrument; FinancingDetails?: IFinancingDetails; SettlDate?: Date; Quantity?: number; QtyType?: number; Currency?: number; InstrmtLegGrp?: IInstrmtLegGrp[]; UndInstrmtCollGrp?: IUndInstrmtCollGrp[]; MarginExcess?: number; TotalNetValue?: number; CashOutstanding?: number; TrdRegTimestamps?: ITrdRegTimestamps[]; Side?: string; MiscFeesGrp?: IMiscFeesGrp[]; Price?: number; PriceType?: number; AccruedInterestAmt?: number; EndAccruedInterestAmt?: number; StartCash?: number; EndCash?: number; SpreadOrBenchmarkCurveData?: ISpreadOrBenchmarkCurveData; Stipulations?: IStipulations[]; Text?: string; EncodedTextLen?: number; EncodedText?: Buffer; StandardTrailer: IStandardTrailer; }