//#region src/model/MiscControllerLicenseInfo.d.ts
type IMiscControllerLicenseInfo = {
type: string;
expiry: Date;
expired: boolean;
maxServers: number;
standalone: boolean;
workerGroups: boolean;
online: boolean;
gracePeriod: Date;
};
/**
* @typedef {Object} IMiscControllerLicenseInfo
* @property {String} type
* @property {Date} expiry
* @property {Boolean} expired
* @property {Number} maxServers
* @property {Boolean} standalone
* @property {Boolean} workerGroups
* @property {Boolean} online
* @property {Date} gracePeriod
*/
/**
* The MiscControllerLicenseInfo model module.
* @module model/MiscControllerLicenseInfo
* @type {IMiscControllerLicenseInfo}
*/
declare class MiscControllerLicenseInfo {
/**
* 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): void;
/**
* Constructs a MiscControllerLicenseInfo 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/MiscControllerLicenseInfo} obj Optional instance to populate.
* @return {module:model/MiscControllerLicenseInfo} The populated MiscControllerLicenseInfo instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to MiscControllerLicenseInfo.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to MiscControllerLicenseInfo.
*/
static validateJSON(data: any): boolean;
type: string;
expiry: Date;
expired: boolean;
maxServers: number;
standalone: boolean;
workerGroups: boolean;
online: boolean;
gracePeriod: Date;
}
//#endregion
export { IMiscControllerLicenseInfo, MiscControllerLicenseInfo as default };