fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 581 B
TypeScript
/**
* Specifies the type of respondents requested.
* - Tag: 1172
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RespondentType: Readonly<{
/** All market participants */
readonly AllMarketParticipants: 1;
/** Specified market participants */
readonly SpecifiedMarketParticipants: 2;
/** All Market Makers */
readonly AllMarketMakers: 3;
/** Primary Market Maker(s) */
readonly PrimaryMarketMaker: 4;
}>;
export type RespondentType = (typeof RespondentType)[keyof typeof RespondentType];