fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 418 B
TypeScript
/**
* Identifies the Confirmation transaction type.
* - Tag: 666
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ConfirmTransType: Readonly<{
/** New */
readonly New: 0;
/** Replace */
readonly Replace: 1;
/** Cancel */
readonly Cancel: 2;
}>;
export type ConfirmTransType = (typeof ConfirmTransType)[keyof typeof ConfirmTransType];