fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 406 B
TypeScript
/**
* Identifies the message transaction type.
* - Tag: 3064
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TestSuiteRequestTransType: Readonly<{
/** New */
readonly New: 0;
/** Cancel */
readonly Cancel: 1;
}>;
export type TestSuiteRequestTransType = (typeof TestSuiteRequestTransType)[keyof typeof TestSuiteRequestTransType];