fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 437 B
TypeScript
/**
* Indicates the type of Network Response Message.
* - Tag: 937
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const NetworkStatusResponseType: Readonly<{
/** Full */
readonly Full: 1;
/** Incremental Update */
readonly IncrementalUpdate: 2;
}>;
export type NetworkStatusResponseType = (typeof NetworkStatusResponseType)[keyof typeof NetworkStatusResponseType];