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