fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 545 B
TypeScript
/**
* Identifies allocation transaction type *** SOME VALUES HAVE BEEN REPLACED - See "Replaced Features and Supported Approach" ***
* - Tag: 71
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const AllocTransType: Readonly<{
/** New */
readonly New: "0";
/** Replace */
readonly Replace: "1";
/** Cancel */
readonly Cancel: "2";
/** Reversal */
readonly Reversal: "6";
}>;
export type AllocTransType = (typeof AllocTransType)[keyof typeof AllocTransType];