UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 546 B
/** * Defines how a server handles distribution of a truncated book. Defaults to broker option. * - Tag: 547 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const MDImplicitDelete: Readonly<{ /** Server must send an explicit delete for bids or offers falling outside the requested MarketDepth of the request */ readonly No: 'N'; /** Client has responsibility for implicitly deleting bids or offers falling outside the MarketDepth of the request */ readonly Yes: 'Y'; }>;