UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 530 B
/** * Specifies the type of date. When specified it applies not only to the current date but to all subsequent dates in the group until overridden with a new type. * - Tag: 41139 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const OptionExerciseDateType: Readonly<{ /** Unadjusted */ readonly Unadjusted: 0; /** Adjusted */ readonly Adjusted: 1; }>; export type OptionExerciseDateType = (typeof OptionExerciseDateType)[keyof typeof OptionExerciseDateType];