/* 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'; /** * Email challenge * @export * @interface EmailChallenge */ export interface EmailChallenge { /** * * @type {ContextualFlowInfo} * @memberof EmailChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof EmailChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof EmailChallenge */ responseErrors?: { [key: string]: Array; }; } /** * Check if a given object implements the EmailChallenge interface. */ export function instanceOfEmailChallenge(value: object): value is EmailChallenge { return true; } export function EmailChallengeFromJSON(json: any): EmailChallenge { return EmailChallengeFromJSONTyped(json, false); } export function EmailChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailChallenge { 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'], }; } export function EmailChallengeToJSON(json: any): EmailChallenge { return EmailChallengeToJSONTyped(json, false); } export function EmailChallengeToJSONTyped(value?: EmailChallenge | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'flow_info': ContextualFlowInfoToJSON(value['flowInfo']), 'component': value['component'], 'response_errors': value['responseErrors'], }; }