fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 518 B
TypeScript
/**
* Format used to generate the MaturityMonthYear for each option
* - Tag: 1303
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MaturityMonthYearFormat: Readonly<{
/** YearMonth Only (default) */
readonly YearMonthOnly: 0;
/** YearMonthDay */
readonly YearMonthDay: 1;
/** YearMonthWeek */
readonly YearMonthWeek: 2;
}>;
export type MaturityMonthYearFormat = (typeof MaturityMonthYearFormat)[keyof typeof MaturityMonthYearFormat];