UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 436 B
/** * Specifies the tolerance value type. * - Tag: 41046 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const DeliveryScheduleToleranceType: Readonly<{ /** Absolute */ readonly Absolute: 0; /** Percentage */ readonly Percentage: 1; }>; export type DeliveryScheduleToleranceType = (typeof DeliveryScheduleToleranceType)[keyof typeof DeliveryScheduleToleranceType];