/* 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'; /** * Password challenge UI fields * @export * @interface PasswordChallenge */ export interface PasswordChallenge { /** * * @type {ContextualFlowInfo} * @memberof PasswordChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof PasswordChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof PasswordChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof PasswordChallenge */ pendingUser: string; /** * * @type {string} * @memberof PasswordChallenge */ pendingUserAvatar: string; /** * * @type {string} * @memberof PasswordChallenge */ recoveryUrl?: string; /** * * @type {boolean} * @memberof PasswordChallenge */ allowShowPassword?: boolean; } /** * Check if a given object implements the PasswordChallenge interface. */ export function instanceOfPasswordChallenge(value: object): value is PasswordChallenge { if (!('pendingUser' in value) || value['pendingUser'] === undefined) return false; if (!('pendingUserAvatar' in value) || value['pendingUserAvatar'] === undefined) return false; return true; } export function PasswordChallengeFromJSON(json: any): PasswordChallenge { return PasswordChallengeFromJSONTyped(json, false); } export function PasswordChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordChallenge { 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'], 'recoveryUrl': json['recovery_url'] == null ? undefined : json['recovery_url'], 'allowShowPassword': json['allow_show_password'] == null ? undefined : json['allow_show_password'], }; } export function PasswordChallengeToJSON(json: any): PasswordChallenge { return PasswordChallengeToJSONTyped(json, false); } export function PasswordChallengeToJSONTyped(value?: PasswordChallenge | 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'], 'recovery_url': value['recoveryUrl'], 'allow_show_password': value['allowShowPassword'], }; }