import "../ApiClient-fBZ10h6n.mjs"; import { n as StateTypeStatic } from "../StateType-CA4aMnXy.mjs"; //#region src/model/TaskFixture.d.ts type ITaskFixture = { id: string; value: string; state: keyof typeof StateTypeStatic; outputs: any; /** * :model/Asset>} assets */ "": Array; description: string; }; /** * @typedef {Object} ITaskFixture * @property {String} id * @property {String} value * @property {keyof typeof import('./StateType').StateTypeStatic} state * @property {Object.} outputs * @property {Array.} assets * @property {String} description */ /** * The TaskFixture model module. * @module model/TaskFixture * @type {ITaskFixture} */ declare class TaskFixture { /** * 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): void; /** * Constructs a TaskFixture 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/TaskFixture} obj Optional instance to populate. * @return {module:model/TaskFixture} The populated TaskFixture instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to TaskFixture. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to TaskFixture. */ static validateJSON(data: any): boolean; /** * Constructs a new TaskFixture. * @alias module:model/TaskFixture * @param {String} id - */ constructor(id: string); id: string; value: string; state: "SUCCESS" | "WARNING" | "CREATED" | "SUBMITTED" | "RUNNING" | "PAUSED" | "RESTARTED" | "KILLING" | "FAILED" | "KILLED" | "CANCELLED" | "QUEUED" | "RETRYING" | "RETRIED" | "SKIPPED" | "BREAKPOINT" | "RESUBMITTED"; outputs: any; assets: any; description: string; } declare namespace TaskFixture { let RequiredProperties: string[]; } //#endregion export { ITaskFixture, TaskFixture as default };