UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

19 lines (18 loc) 509 B
/** * Used to classify the type of market segment. * - Tag: 2543 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MarketSegmentType: Readonly<{ /** Pool Used when multiple market segments are being grouped or pooled together. */ readonly Pool: 1; /** Retail */ readonly Retail: 2; /** Wholesale */ readonly Wholesale: 3; }>; export type MarketSegmentType = (typeof MarketSegmentType)[keyof typeof MarketSegmentType];