fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
22 lines (21 loc) • 541 B
TypeScript
/**
* Action to take should throttle limit be exceeded.
* - Tag: 1611
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ThrottleAction: Readonly<{
/** Queue inbound */
readonly QueueInbound: 0;
/** Queue outbound */
readonly QueueOutbound: 1;
/** Reject */
readonly Reject: 2;
/** Disconnect */
readonly Disconnect: 3;
/** Warning */
readonly Warning: 4;
}>;
export type ThrottleAction = (typeof ThrottleAction)[keyof typeof ThrottleAction];