fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 323 B
TypeScript
/**
* 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;
}>;