fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 537 B
TypeScript
/**
* Code to represent the status type.
* - Tag: 429
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ListStatusType: Readonly<{
/** Ack */
readonly Ack: 1;
/** Response */
readonly Response: 2;
/** Timed */
readonly Timed: 3;
/** Exec Started */
readonly ExecStarted: 4;
/** All Done */
readonly AllDone: 5;
/** Alert */
readonly Alert: 6;
}>;
export type ListStatusType = (typeof ListStatusType)[keyof typeof ListStatusType];