fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
18 lines (17 loc) • 453 B
TypeScript
/**
* Indicates how the receiver (i.e. third party) of allocation information should handle/process the account details.
* - Tag: 209
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AllocHandlInst: Readonly<{
/** Match */
readonly Match: 1;
/** Forward */
readonly Forward: 2;
/** Forward and Match */
readonly ForwardAndMatch: 3;
readonly AutoClaimGiveUp: 4;
}>;