@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
17 lines (16 loc) • 405 B
TypeScript
/**
* Specifies the type of respondents requested.
* tag: 1172
* @readonly
* @enum {number} (int)
*/
export declare enum RespondentType {
/** All market participants */
AllMarketParticipants = 1,
/** Specified market participants */
SpecifiedMarketParticipants = 2,
/** All Market Makers */
AllMarketMakers = 3,
/** Primary Market Maker(s) */
PrimaryMarketMaker = 4
}