UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 469 B
/** * Indicates the type of transfer. * - Tag: 2441 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TransferScope: Readonly<{ /** Inter-firm transfer */ readonly InterFirmTransfer: 0; /** Intra-firm transfer */ readonly IntraFirmTransfer: 1; /** Clearing Member Trade Assignment */ readonly CMTA: 2; }>; export type TransferScope = (typeof TransferScope)[keyof typeof TransferScope];