fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
25 lines (24 loc) • 841 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';
/** Preliminary (without MiscFees and NetMoney) (Removed/Replaced) */
readonly Preliminary: '3';
/** Calculated (includes MiscFees and NetMoney) (Removed/Replaced) */
readonly Calculated: '4';
/** Calculated without Preliminary (sent unsolicited by broker, includes MiscFees and NetMoney) (Removed/Replaced) */
readonly CalculatedWithoutPreliminary: '5';
/** Reversal */
readonly Reversal: '6';
}>;