fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 491 B
TypeScript
/**
* Identifies the overall test result of a group of individual test scenarios.
* - Tag: 3070
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TestSuiteStatus: Readonly<{
/** Undefined */
readonly Undefined: 0;
/** Pass */
readonly Pass: 1;
/** Fail */
readonly Fail: 2;
/** Warning */
readonly Warning: 3;
}>;
export type TestSuiteStatus = (typeof TestSuiteStatus)[keyof typeof TestSuiteStatus];