UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 375 B
/** * Type of throttle. * - Tag: 1612 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ThrottleType: Readonly<{ /** Inbound Rate */ readonly InboundRate: 0; /** Outstanding Requests */ readonly OutstandingRequests: 1; }>; export type ThrottleType = (typeof ThrottleType)[keyof typeof ThrottleType];