import "../ApiClient-fBZ10h6n.mjs"; import { t as TestState } from "../TestState-B4ewj54k.mjs"; //#region src/model/TestSuiteRunResult.d.ts type ITestSuiteRunResult = { id: string; testSuiteId: string; namespace: string; flowId: string; state: TestState; startDate: Date; endDate: Date; /** * :model/UnitTestResult>} results */ "": Array; }; /** * @typedef {Object} ITestSuiteRunResult * @property {String} id * @property {String} testSuiteId * @property {String} namespace * @property {String} flowId * @property {TestState} state * @property {Date} startDate * @property {Date} endDate * @property {Array.} results */ /** * The TestSuiteRunResult model module. * @module model/TestSuiteRunResult * @type {ITestSuiteRunResult} */ declare class TestSuiteRunResult { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, id: any, testSuiteId: any, namespace: any, flowId: any, state: any, startDate: any, endDate: any): void; /** * Constructs a TestSuiteRunResult from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/TestSuiteRunResult} obj Optional instance to populate. * @return {module:model/TestSuiteRunResult} The populated TestSuiteRunResult instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to TestSuiteRunResult. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to TestSuiteRunResult. */ static validateJSON(data: any): boolean; /** * Constructs a new TestSuiteRunResult. * @alias module:model/TestSuiteRunResult * @param {String} id - * @param {String} testSuiteId - * @param {String} namespace - * @param {String} flowId - * @param {module:model/TestState} state - * @param {Date} startDate - * @param {Date} endDate - */ constructor(id: string, testSuiteId: string, namespace: string, flowId: string, state: any, startDate: Date, endDate: Date); id: string; testSuiteId: string; namespace: string; flowId: string; state: TestState; startDate: Date; endDate: Date; results: any; } declare namespace TestSuiteRunResult { let RequiredProperties: string[]; } //#endregion export { ITestSuiteRunResult, TestSuiteRunResult as default };