/* 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'; /** * Duo Challenge * @export * @interface AuthenticatorDuoChallenge */ export interface AuthenticatorDuoChallenge { /** * * @type {ContextualFlowInfo} * @memberof AuthenticatorDuoChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof AuthenticatorDuoChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ pendingUser: string; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ pendingUserAvatar: string; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ activationBarcode: string; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ activationCode: string; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ stageUuid: string; } /** * Check if a given object implements the AuthenticatorDuoChallenge interface. */ export function instanceOfAuthenticatorDuoChallenge(value: object): value is AuthenticatorDuoChallenge { if (!('pendingUser' in value) || value['pendingUser'] === undefined) return false; if (!('pendingUserAvatar' in value) || value['pendingUserAvatar'] === undefined) return false; if (!('activationBarcode' in value) || value['activationBarcode'] === undefined) return false; if (!('activationCode' in value) || value['activationCode'] === undefined) return false; if (!('stageUuid' in value) || value['stageUuid'] === undefined) return false; return true; } export function AuthenticatorDuoChallengeFromJSON(json: any): AuthenticatorDuoChallenge { return AuthenticatorDuoChallengeFromJSONTyped(json, false); } export function AuthenticatorDuoChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorDuoChallenge { 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'], 'activationBarcode': json['activation_barcode'], 'activationCode': json['activation_code'], 'stageUuid': json['stage_uuid'], }; } export function AuthenticatorDuoChallengeToJSON(json: any): AuthenticatorDuoChallenge { return AuthenticatorDuoChallengeToJSONTyped(json, false); } export function AuthenticatorDuoChallengeToJSONTyped(value?: AuthenticatorDuoChallenge | 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'], 'activation_barcode': value['activationBarcode'], 'activation_code': value['activationCode'], 'stage_uuid': value['stageUuid'], }; }