UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 351 B
/** * Matching Instruction for the order. * - Tag: 1625 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MatchInst: Readonly<{ /** Match */ readonly Match: 1; /** Do Not Match */ readonly DoNotMatch: 2; }>; export type MatchInst = (typeof MatchInst)[keyof typeof MatchInst];