UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 400 B
/** * Used to indicate the status of the trade match report submission. * - Tag: 1896 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TradeMatchAckStatus: Readonly<{ /** Received, not yet processed */ readonly ReceivedNotProcessed: 0; /** Accepted */ readonly Accepted: 1; /** Rejected */ readonly Rejected: 2; }>;