UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 387 B
/** * Exercise Method used to in performing assignment. * - Tag: 747 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const ExerciseMethod: Readonly<{ /** Automatic */ readonly Automatic: "A"; /** Manual */ readonly Manual: "M"; }>; export type ExerciseMethod = (typeof ExerciseMethod)[keyof typeof ExerciseMethod];