/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SsoProviderCheckResponse */ export interface SsoProviderCheckResponse { /** * Authentication type for the email domain * @type {string} * @memberof SsoProviderCheckResponse */ type: SsoProviderCheckResponseTypeEnum; /** * SSO provider name (only present when type is 'sso') * @type {string} * @memberof SsoProviderCheckResponse */ provider?: string; /** * SSO authentication URL (only present when type is 'sso') * @type {string} * @memberof SsoProviderCheckResponse */ ssoAuthUrl?: string; /** * * @type {string} * @memberof SsoProviderCheckResponse */ id?: string; } /** * @export * @enum {string} */ export declare enum SsoProviderCheckResponseTypeEnum { Otp = "otp", Sso = "sso" } export declare function SsoProviderCheckResponseFromJSON(json: any): SsoProviderCheckResponse; export declare function SsoProviderCheckResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SsoProviderCheckResponse; export declare function SsoProviderCheckResponseToJSON(value?: SsoProviderCheckResponse | null): any;