UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 403 B
/** * Identifies the type of Allocation linkage when AllocLinkID(196) is used. * - Tag: 197 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AllocLinkType: Readonly<{ /** FX Netting */ readonly FXNetting: 0; /** FX Swap */ readonly FXSwap: 1; }>; export type AllocLinkType = (typeof AllocLinkType)[keyof typeof AllocLinkType];