UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 355 B
/** * Specifies the party's or parties' intention to clear the trade. * - Tag: 1924 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ClearingIntention: Readonly<{ /** Do not intend to clear */ readonly DoNotIntendToClear: 0; /** Intend to clear */ readonly IntendToClear: 1; }>;