UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

26 lines (25 loc) 655 B
/** * Type of entitlement. * - Tag: 1775 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const EntitlementType: Readonly<{ /** Trade */ readonly Trade: 0; /** Make markets */ readonly MakeMarkets: 1; /** Hold positions */ readonly HoldPositions: 2; /** Perform give-ups */ readonly PerformGiveUps: 3; /** Submit Indications of Interest (IOIs) */ readonly SubmitIOIs: 4; /** Subscribe to market data */ readonly SubscribeMarketData: 5; readonly ShortWithPreBorrow: 6; readonly SubmitQuoteRequests: 7; readonly RespondToQuoteRequests: 8; }>;