import "../ApiClient-fBZ10h6n.mjs"; import { t as CheckBehavior } from "../CheckBehavior-BW341KoQ.mjs"; import { t as CheckStyle } from "../CheckStyle-PBSMhOAA.mjs"; //#region src/model/Check.d.ts type ICheck = { condition: string; message: string; style: CheckStyle; behavior: CheckBehavior; }; /** * @typedef {Object} ICheck * @property {String} condition * @property {String} message * @property {CheckStyle} style * @property {CheckBehavior} behavior */ /** * The Check model module. * @module model/Check * @type {ICheck} */ declare class Check { /** * 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, condition: any, message: any): void; /** * Constructs a Check 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/Check} obj Optional instance to populate. * @return {module:model/Check} The populated Check instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to Check. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to Check. */ static validateJSON(data: any): boolean; /** * Constructs a new Check. * @alias module:model/Check * @param {String} condition - * @param {String} message - */ constructor(condition: string, message: string); condition: string; message: string; style: CheckStyle; behavior: CheckBehavior; } declare namespace Check { let RequiredProperties: string[]; } //#endregion export { ICheck, Check as default };