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