fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 476 B
TypeScript
/**
* Identifies transaction type
* - Tag: 20
* - FIX Specification type: char
* - FIX Specification version: FIX42
* - Mapped type: string
* @readonly
* @public
*/
export declare const ExecTransType: Readonly<{
/** New */
readonly New: "0";
/** Cancel */
readonly Cancel: "1";
/** Correct */
readonly Correct: "2";
/** Status */
readonly Status: "3";
}>;
export type ExecTransType = (typeof ExecTransType)[keyof typeof ExecTransType];