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