UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

24 lines (23 loc) 663 B
/** * Specifies the day type of the relative payment date offset. * - Tag: 41159 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PaymentDateOffsetDayType: Readonly<{ /** Business */ readonly Business: 0; /** Calendar */ readonly Calendar: 1; /** Commodity business */ readonly Commodity: 2; /** Currency business */ readonly Currency: 3; /** Exchange business */ readonly Exchange: 4; /** Scheduled trading day */ readonly Scheduled: 5; }>; export type PaymentDateOffsetDayType = (typeof PaymentDateOffsetDayType)[keyof typeof PaymentDateOffsetDayType];