fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 540 B
TypeScript
/**
* Indicates the status of a network connection
* - Tag: 928
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const StatusValue: Readonly<{
/** Connected */
readonly Connected: 1;
/** Not Connected - down expected up */
readonly NotConnectedUnexpected: 2;
/** Not Connected - down expected down */
readonly NotConnectedExpected: 3;
/** In Process */
readonly InProcess: 4;
}>;
export type StatusValue = (typeof StatusValue)[keyof typeof StatusValue];