fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 498 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;
}>;