UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

36 lines (35 loc) 1.18 kB
/** * Subtype of an entitlement specified in EntitlementType(1775). * - Tag: 2402 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const EntitlementSubType: Readonly<{ /** Order entry Entitle to enter new orders */ readonly OrderEntry: 1; /** Hit/Lift Entitle to Hit/Lift */ readonly HItLift: 2; /** View indicative prices Entitle to subscribe to indicative prices */ readonly ViewIndicativePx: 3; /** View executable prices Entitle to subscribe to executable prices */ readonly ViewExecutablePx: 4; /** Single quote Entitle to submit quote request for a single quote */ readonly SingleQuote: 5; /** Streaming quotes Entitle to submit quote request for streaming quotes */ readonly StreamingQuotes: 6; /** Single broker Entitle to submit quote request for a single broker */ readonly SingleBroker: 7; /** Multi brokers Entitle to submit quote request for multiple brokers */ readonly MultiBrokers: 8; }>; export type EntitlementSubType = (typeof EntitlementSubType)[keyof typeof EntitlementSubType];