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