UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 354 B
/** * Identifies the status of a reversal transaction. * - Tag: 1738 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AllocReversalStatus: Readonly<{ /** Completed */ readonly Completed: 0; /** Refused */ readonly Refused: 1; /** Cancelled */ readonly Cancelled: 2; }>;