fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 884 B
TypeScript
/**
* Specifies the activity state the test suite is in.
* - Tag: 3069
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TestSuiteActivityState: Readonly<{
/** Scheduled
Test suite is planned for execution but has not started yet. */
readonly Scheduled: 0;
/** Running
Test suite is currently being executed. */
readonly Running: 1;
/** Completed
Test suite has run to completion and test status information is available. */
readonly Completed: 2;
/** Cancelled
Test suite has not run to completion due to a cancellation by the user or an abnormal termination by the test system. Test suite status information is undefined. */
readonly Cancelled: 3;
}>;
export type TestSuiteActivityState = (typeof TestSuiteActivityState)[keyof typeof TestSuiteActivityState];