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