/* tslint:disable */ /* eslint-disable */ /** * 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 { mapValues } from '../runtime'; import type { ErrorDetail } from './ErrorDetail'; import { ErrorDetailFromJSON, ErrorDetailFromJSONTyped, ErrorDetailToJSON, ErrorDetailToJSONTyped, } from './ErrorDetail'; import type { ContextualFlowInfo } from './ContextualFlowInfo'; import { ContextualFlowInfoFromJSON, ContextualFlowInfoFromJSONTyped, ContextualFlowInfoToJSON, ContextualFlowInfoToJSONTyped, } 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 function instanceOfAuthenticatorEmailChallenge(value: object): value is AuthenticatorEmailChallenge { if (!('pendingUser' in value) || value['pendingUser'] === undefined) return false; if (!('pendingUserAvatar' in value) || value['pendingUserAvatar'] === undefined) return false; return true; } export function AuthenticatorEmailChallengeFromJSON(json: any): AuthenticatorEmailChallenge { return AuthenticatorEmailChallengeFromJSONTyped(json, false); } export function AuthenticatorEmailChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorEmailChallenge { if (json == null) { return json; } return { 'flowInfo': json['flow_info'] == null ? undefined : ContextualFlowInfoFromJSON(json['flow_info']), 'component': json['component'] == null ? undefined : json['component'], 'responseErrors': json['response_errors'] == null ? undefined : json['response_errors'], 'pendingUser': json['pending_user'], 'pendingUserAvatar': json['pending_user_avatar'], 'email': json['email'] == null ? undefined : json['email'], 'emailRequired': json['email_required'] == null ? undefined : json['email_required'], }; } export function AuthenticatorEmailChallengeToJSON(json: any): AuthenticatorEmailChallenge { return AuthenticatorEmailChallengeToJSONTyped(json, false); } export function AuthenticatorEmailChallengeToJSONTyped(value?: AuthenticatorEmailChallenge | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'flow_info': ContextualFlowInfoToJSON(value['flowInfo']), 'component': value['component'], 'response_errors': value['responseErrors'], 'pending_user': value['pendingUser'], 'pending_user_avatar': value['pendingUserAvatar'], 'email': value['email'], 'email_required': value['emailRequired'], }; }