//#region src/model/ExecutionKind.d.ts /** * Enum ExecutionKind * @type {{ * "NORMAL": "NORMAL","TEST": "TEST","PLAYGROUND": "PLAYGROUND", * }} */ declare const ExecutionKindStatic: { "NORMAL": "NORMAL"; "TEST": "TEST"; "PLAYGROUND": "PLAYGROUND"; }; /** * Enum class ExecutionKind. * @enum {} * @readonly */ declare class ExecutionKind { /** * Returns a ExecutionKind enum value from a Javascript object name. * @param {Object} data The plain JavaScript object containing the name of the enum value. * @return {module:model/ExecutionKind} The enum ExecutionKind value. */ static constructFromObject(object: any): any; /** * value: "NORMAL" * @const */ NORMAL: string; /** * value: "TEST" * @const */ TEST: string; /** * value: "PLAYGROUND" * @const */ PLAYGROUND: string; } /** * * */ type ExecutionKind = any; //#endregion export { ExecutionKind, ExecutionKind as default, ExecutionKindStatic };