fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 479 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
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const PrivateQuote: Readonly<{
/** Private Quote */
readonly PrivateQuote: "Y";
/** Public Quote */
readonly PublicQuote: "N";
}>;
export type PrivateQuote = (typeof PrivateQuote)[keyof typeof PrivateQuote];