fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
21 lines (20 loc) • 458 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;
}>;