UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 440 B
/** * Specifies the type of action to take or that was taken for a given test suite. * - Tag: 3067 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TestActionType: Readonly<{ /** Start */ readonly Start: 0; /** Stop */ readonly Stop: 1; /** State */ readonly State: 2; }>; export type TestActionType = (typeof TestActionType)[keyof typeof TestActionType];