UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 389 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; }>;