fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 452 B
TypeScript
/**
* Identifies the status of a reversal transaction.
* - Tag: 1738
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AllocReversalStatus: Readonly<{
/** Completed */
readonly Completed: 0;
/** Refused */
readonly Refused: 1;
/** Cancelled */
readonly Cancelled: 2;
}>;
export type AllocReversalStatus = (typeof AllocReversalStatus)[keyof typeof AllocReversalStatus];