/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ErrorDetail } from './ErrorDetail'; import type { ContextualFlowInfo } from './ContextualFlowInfo'; /** * Authenticator Email Setup challenge * @export * @interface AuthenticatorEmailChallenge */ export interface AuthenticatorEmailChallenge { /** * * @type {ContextualFlowInfo} * @memberof AuthenticatorEmailChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof AuthenticatorEmailChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof AuthenticatorEmailChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof AuthenticatorEmailChallenge */ pendingUser: string; /** * * @type {string} * @memberof AuthenticatorEmailChallenge */ pendingUserAvatar: string; /** * * @type {string} * @memberof AuthenticatorEmailChallenge */ email?: string | null; /** * * @type {boolean} * @memberof AuthenticatorEmailChallenge */ emailRequired?: boolean; } /** * Check if a given object implements the AuthenticatorEmailChallenge interface. */ export declare function instanceOfAuthenticatorEmailChallenge(value: object): value is AuthenticatorEmailChallenge; export declare function AuthenticatorEmailChallengeFromJSON(json: any): AuthenticatorEmailChallenge; export declare function AuthenticatorEmailChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorEmailChallenge; export declare function AuthenticatorEmailChallengeToJSON(json: any): AuthenticatorEmailChallenge; export declare function AuthenticatorEmailChallengeToJSONTyped(value?: AuthenticatorEmailChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorEmailChallenge.d.ts.map