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