UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 525 B
/** * Unit of measure for the Maturity Month Year Increment * - Tag: 1302 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MaturityMonthYearIncrementUnits: Readonly<{ /** Months */ readonly Months: 0; /** Days */ readonly Days: 1; /** Weeks */ readonly Weeks: 2; /** Years */ readonly Years: 3; }>; export type MaturityMonthYearIncrementUnits = (typeof MaturityMonthYearIncrementUnits)[keyof typeof MaturityMonthYearIncrementUnits];