fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 529 B
TypeScript
/**
* Action to take to resolve an application message queue (backlog).
* - Tag: 815
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ApplQueueAction: Readonly<{
/** No Action Taken */
readonly NoActionTaken: 0;
/** Queue Flushed */
readonly QueueFlushed: 1;
/** Overlay Last */
readonly OverlayLast: 2;
/** End Session */
readonly EndSession: 3;
}>;
export type ApplQueueAction = (typeof ApplQueueAction)[keyof typeof ApplQueueAction];