//#region src/model/TestSuite.d.ts type ITestSuite = { id: string; description: string; namespace: string; flowId: string; source: string; /** * :model/UnitTest>} testCases */ "": Array; deleted: boolean; disabled: boolean; }; /** * @typedef {Object} ITestSuite * @property {String} id * @property {String} description * @property {String} namespace * @property {String} flowId * @property {String} source * @property {Array.} testCases * @property {Boolean} deleted * @property {Boolean} disabled */ /** * The TestSuite model module. * @module model/TestSuite * @type {ITestSuite} */ declare class TestSuite { /** * 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, namespace: any, flowId: any, testCases: any): void; /** * Constructs a TestSuite 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/TestSuite} obj Optional instance to populate. * @return {module:model/TestSuite} The populated TestSuite instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to TestSuite. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to TestSuite. */ static validateJSON(data: any): boolean; /** * Constructs a new TestSuite. * @alias module:model/TestSuite * @param {String} id - * @param {String} namespace - * @param {String} flowId - * @param {Array.} testCases - */ constructor(id: string, namespace: string, flowId: string, testCases: any); id: string; description: string; namespace: string; flowId: string; source: string; testCases: any; deleted: boolean; disabled: boolean; } declare namespace TestSuite { let RequiredProperties: string[]; } //#endregion export { ITestSuite, TestSuite as default };