UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 485 B
/** * Specifies the type of date (e.g. adjusted for holidays). * - Tag: 40144 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ProvisionOptionExerciseFixedDateType: Readonly<{ /** Unadjusted */ readonly Unadjusted: 0; /** Adjusted */ readonly Adjusted: 1; }>; export type ProvisionOptionExerciseFixedDateType = (typeof ProvisionOptionExerciseFixedDateType)[keyof typeof ProvisionOptionExerciseFixedDateType];