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