UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

24 lines (23 loc) 697 B
/** * Day type for events that specify a period and unit. * - Tag: 40197 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ProtectionTermEventDayType: Readonly<{ /** Business */ readonly Business: 0; /** Calendar */ readonly Calendar: 1; /** Commodity business */ readonly CommodityBusiness: 2; /** Currency business */ readonly CurrencyBusiness: 3; /** Exchange business */ readonly ExchangeBusiness: 4; /** Scheduled trading day */ readonly ScheduledTradingDay: 5; }>; export type ProtectionTermEventDayType = (typeof ProtectionTermEventDayType)[keyof typeof ProtectionTermEventDayType];