UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

23 lines (22 loc) 594 B
/** * Reason the trade match report submission was rejected. * - Tag: 1897 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TradeMatchRejectReason: Readonly<{ /** Successful */ readonly Successful: 0; /** Invalid party information */ readonly InvalidPartyInformation: 1; /** Unknown instrument */ readonly UnknownInstrument: 2; /** Not authorized to report trades */ readonly Unauthorized: 3; /** Invalid trade type */ readonly InvalidTradeType: 4; /** Other */ readonly Other: 99; }>;