UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 399 B
/** * Indicates whether or not to exchange for phsyical. * - Tag: 411 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const ExchangeForPhysical: Readonly<{ /** False */ readonly False: "N"; /** True */ readonly True: "Y"; }>; export type ExchangeForPhysical = (typeof ExchangeForPhysical)[keyof typeof ExchangeForPhysical];