UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 414 B
/** * Describes action recipient should take if a throttle limit were exceeded. * - Tag: 1685 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ThrottleInst: Readonly<{ /** Reject if throttle limit exceeded */ readonly RejectIfThrottleLimitExceeded: 0; /** Queue if throttle limit exceeded */ readonly QueueIfThrottleLimitExceeded: 1; }>;