UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

22 lines (21 loc) 702 B
/** * The ID source of ExDestination * - Tag: 1133 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const ExDestinationIDSource: Readonly<{ /** BIC (Bank Identification Code) (ISO 9362) */ readonly BIC: "B"; /** Generally accepted market participant identifier (e.g. NASD mnemonic) */ readonly GeneralIdentifier: "C"; /** Proprietary / Custom code */ readonly Proprietary: "D"; /** ISO Country Code */ readonly ISOCountryCode: "E"; /** MIC (ISO 10383 - Market Identifier Code) */ readonly MIC: "G"; }>; export type ExDestinationIDSource = (typeof ExDestinationIDSource)[keyof typeof ExDestinationIDSource];