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