/* 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'; /** * WebAuthn Challenge * @export * @interface AuthenticatorWebAuthnChallenge */ export interface AuthenticatorWebAuthnChallenge { /** * * @type {ContextualFlowInfo} * @memberof AuthenticatorWebAuthnChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof AuthenticatorWebAuthnChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof AuthenticatorWebAuthnChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof AuthenticatorWebAuthnChallenge */ pendingUser: string; /** * * @type {string} * @memberof AuthenticatorWebAuthnChallenge */ pendingUserAvatar: string; /** * * @type {{ [key: string]: any; }} * @memberof AuthenticatorWebAuthnChallenge */ registration: { [key: string]: any; }; } /** * Check if a given object implements the AuthenticatorWebAuthnChallenge interface. */ export function instanceOfAuthenticatorWebAuthnChallenge(value: object): value is AuthenticatorWebAuthnChallenge { if (!('pendingUser' in value) || value['pendingUser'] === undefined) return false; if (!('pendingUserAvatar' in value) || value['pendingUserAvatar'] === undefined) return false; if (!('registration' in value) || value['registration'] === undefined) return false; return true; } export function AuthenticatorWebAuthnChallengeFromJSON(json: any): AuthenticatorWebAuthnChallenge { return AuthenticatorWebAuthnChallengeFromJSONTyped(json, false); } export function AuthenticatorWebAuthnChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorWebAuthnChallenge { 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'], 'registration': json['registration'], }; } export function AuthenticatorWebAuthnChallengeToJSON(json: any): AuthenticatorWebAuthnChallenge { return AuthenticatorWebAuthnChallengeToJSONTyped(json, false); } export function AuthenticatorWebAuthnChallengeToJSONTyped(value?: AuthenticatorWebAuthnChallenge | 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'], 'registration': value['registration'], }; }