UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

21 lines (20 loc) 740 B
/** * Indicates the type and level of details required for a Network Status Request Message Boolean logic applies EG If you want to subscribe for changes to certain id's then UserRequestType =0 (8+2), Snapshot for certain ID's = 9 (8+1) * - Tag: 935 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const NetworkRequestType: Readonly<{ /** Snapshot */ readonly Snapshot: 1; /** Subscribe */ readonly Subscribe: 2; /** Stop Subscribing */ readonly StopSubscribing: 4; /** Level of Detail, then NoCompID's becomes required */ readonly LevelOfDetail: 8; }>; export type NetworkRequestType = (typeof NetworkRequestType)[keyof typeof NetworkRequestType];