fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 510 B
TypeScript
/**
* Indicates whether a message was queued as a result of throttling.
* - Tag: 1609
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ThrottleStatus: Readonly<{
/** Throttle limit not exceeded, not queued */
readonly ThrottleLimitNotExceededNotQueued: 0;
/** Queued due to throttle limit exceeded */
readonly QueuedDueToThrottleLimitExceeded: 1;
}>;
export type ThrottleStatus = (typeof ThrottleStatus)[keyof typeof ThrottleStatus];