UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 402 B
/** * 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'; }>;