UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 376 B
/** * Identifies whether the allocation is to be sub-allocated or allocated to a third party * - Tag: 992 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const IndividualAllocType: Readonly<{ /** Sub Allocate */ readonly SubAllocate: 1; /** Third Party Allocation */ readonly ThirdPartyAllocation: 2; }>;