//#region src/model/ServerConfigLiveness.d.ts
type IServerConfigLiveness = {
enabled: boolean;
interval: string;
timeout: string;
initialDelay: string;
heartbeatInterval: string;
};
/**
* @typedef {Object} IServerConfigLiveness
* @property {Boolean} enabled
* @property {String} interval
* @property {String} timeout
* @property {String} initialDelay
* @property {String} heartbeatInterval
*/
/**
* The ServerConfigLiveness model module.
* @module model/ServerConfigLiveness
* @type {IServerConfigLiveness}
*/
declare class ServerConfigLiveness {
/**
* 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, enabled: any, interval: any, timeout: any, initialDelay: any, heartbeatInterval: any): void;
/**
* Constructs a ServerConfigLiveness 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/ServerConfigLiveness} obj Optional instance to populate.
* @return {module:model/ServerConfigLiveness} The populated ServerConfigLiveness instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to ServerConfigLiveness.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to ServerConfigLiveness.
*/
static validateJSON(data: any): boolean;
/**
* Constructs a new ServerConfigLiveness.
* @alias module:model/ServerConfigLiveness
* @param {Boolean} enabled -
* @param {String} interval -
* @param {String} timeout -
* @param {String} initialDelay -
* @param {String} heartbeatInterval -
*/
constructor(enabled: boolean, interval: string, timeout: string, initialDelay: string, heartbeatInterval: string);
enabled: boolean;
interval: string;
timeout: string;
initialDelay: string;
heartbeatInterval: string;
}
declare namespace ServerConfigLiveness {
let RequiredProperties: string[];
}
//#endregion
export { IServerConfigLiveness, ServerConfigLiveness as default };