UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 357 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; }>;