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