UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 354 B
/** * Used to identify the reporting mode of the settlement obligation which is either preliminary or final * - Tag: 1159 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const SettlObligMode: Readonly<{ /** Preliminary */ readonly Preliminary: 1; /** Final */ readonly Final: 2; }>;