UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 447 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; }>; export type ClearingIntention = (typeof ClearingIntention)[keyof typeof ClearingIntention];