//#region src/model/ExecutionControllerEvalResult.d.ts
type IExecutionControllerEvalResult = {
result: string;
error: string;
stackTrace: string;
};
/**
* @typedef {Object} IExecutionControllerEvalResult
* @property {String} result
* @property {String} error
* @property {String} stackTrace
*/
/**
* The ExecutionControllerEvalResult model module.
* @module model/ExecutionControllerEvalResult
* @type {IExecutionControllerEvalResult}
*/
declare class ExecutionControllerEvalResult {
/**
* 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 ExecutionControllerEvalResult 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/ExecutionControllerEvalResult} obj Optional instance to populate.
* @return {module:model/ExecutionControllerEvalResult} The populated ExecutionControllerEvalResult instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to ExecutionControllerEvalResult.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to ExecutionControllerEvalResult.
*/
static validateJSON(data: any): boolean;
result: string;
error: string;
stackTrace: string;
}
//#endregion
export { IExecutionControllerEvalResult, ExecutionControllerEvalResult as default };