UNPKG

jspurefix

Version:
24 lines (23 loc) 879 B
/// <reference types="node" /> import { IStandardHeader } from './set/standard_header'; import { IRegulatoryTradeIDGrp } from './set/regulatory_trade_id_grp'; import { IMatchExceptionGrp } from './set/match_exception_grp'; import { IMatchingDataPointGrp } from './set/matching_data_point_grp'; import { IStandardTrailer } from './set/standard_trailer'; export interface IConfirmationAck { StandardHeader: IStandardHeader; ConfirmID: string; TradeDate: Date; TransactTime: Date; AffirmStatus: number; RegulatoryTradeIDGrp?: IRegulatoryTradeIDGrp; TradeConfirmationReferenceID?: string; ConfirmRejReason?: number; MatchStatus?: string; MatchExceptionGrp?: IMatchExceptionGrp; MatchingDataPointGrp?: IMatchingDataPointGrp; Text?: string; EncodedTextLen?: number; EncodedText?: Buffer; StandardTrailer: IStandardTrailer; }