@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 325 B
TypeScript
/**
* Specifies whether a quote is public, i.e. available to the market, or private, i.e. available to a specified counterparty only.
* tag: 1171
* @readonly
* @enum {string} (Boolean)
*/
export declare enum PrivateQuote {
/** Private Quote */
PrivateQuote = "Y",
/** Public Quote */
PublicQuote = "N"
}