fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 474 B
TypeScript
/**
* 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;
}>;
export type IndividualAllocType = (typeof IndividualAllocType)[keyof typeof IndividualAllocType];