UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 477 B
/** * Specifies the type of delivery schedule. * - Tag: 41038 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const DeliveryScheduleType: Readonly<{ /** Notional */ readonly Notional: 0; /** Delivery */ readonly Delivery: 1; /** Physical settlement period */ readonly PhysicalSettlPeriods: 2; }>; export type DeliveryScheduleType = (typeof DeliveryScheduleType)[keyof typeof DeliveryScheduleType];