import "../ApiClient-fBZ10h6n.mjs"; import { t as ExecutionKind } from "../ExecutionKind-CympInQF.mjs"; import { t as ExecutionMetadata_default } from "../ExecutionMetadata-CcYPxt7I.mjs"; import { t as ExecutionTrigger_default } from "../ExecutionTrigger-CzKbJUnh.mjs"; import "../StateType-CA4aMnXy.mjs"; import "../StateHistory-CKitluwW.mjs"; import { t as State_default } from "../State-DVXHVcVv.mjs"; //#region src/model/ExecutionControllerExecutionResponse.d.ts type IExecutionControllerExecutionResponse = { /** * :model/Label>} labels */ "": Array; id: string; namespace: string; flowId: string; flowRevision: number; inputs: any; outputs: any; variables: any; state: State_default; parentId: string; originalId: string; trigger: ExecutionTrigger_default; deleted: boolean; metadata: ExecutionMetadata_default; scheduleDate: Date; traceParent: string; kind: ExecutionKind; url: string; }; /** * @typedef {Object} IExecutionControllerExecutionResponse * @property {Array.} labels * @property {String} id * @property {String} namespace * @property {String} flowId * @property {Number} flowRevision * @property {Array.} taskRunList * @property {Object} inputs * @property {Object} outputs * @property {Object} variables * @property {State} state * @property {String} parentId * @property {String} originalId * @property {ExecutionTrigger} trigger * @property {Boolean} deleted * @property {ExecutionMetadata} metadata * @property {Date} scheduleDate * @property {String} traceParent * @property {Array.} fixtures * @property {ExecutionKind} kind * @property {Array.} breakpoints * @property {String} url */ /** * The ExecutionControllerExecutionResponse model module. * @module model/ExecutionControllerExecutionResponse * @type {IExecutionControllerExecutionResponse} */ declare class ExecutionControllerExecutionResponse { /** * 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, flowRevision: any, state: any, deleted: any): void; /** * Constructs a ExecutionControllerExecutionResponse 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/ExecutionControllerExecutionResponse} obj Optional instance to populate. * @return {module:model/ExecutionControllerExecutionResponse} The populated ExecutionControllerExecutionResponse instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to ExecutionControllerExecutionResponse. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to ExecutionControllerExecutionResponse. */ static validateJSON(data: any): boolean; /** * Constructs a new ExecutionControllerExecutionResponse. * @alias module:model/ExecutionControllerExecutionResponse * @implements module:model/Execution * @param {String} id - * @param {String} namespace - * @param {String} flowId - * @param {Number} flowRevision - * @param {module:model/State} state - * @param {Boolean} deleted - */ constructor(id: string, namespace: string, flowId: string, flowRevision: number, state: any, deleted: boolean); labels: any; id: string; namespace: string; flowId: string; flowRevision: number; taskRunList: any; inputs: any; outputs: any; variables: any; state: State_default; parentId: string; originalId: string; trigger: ExecutionTrigger_default; deleted: boolean; metadata: ExecutionMetadata_default; scheduleDate: Date; traceParent: string; fixtures: any; kind: ExecutionKind; breakpoints: any; url: string; } declare namespace ExecutionControllerExecutionResponse { let RequiredProperties: string[]; } //#endregion export { IExecutionControllerExecutionResponse, ExecutionControllerExecutionResponse as default };