fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 491 B
TypeScript
/**
* 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;
}>;
export type ThrottleInst = (typeof ThrottleInst)[keyof typeof ThrottleInst];