/** * 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 type { ErrorDetail } from './ErrorDetail'; import type { ContextualFlowInfo } 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 declare function instanceOfAuthenticatorWebAuthnChallenge(value: object): value is AuthenticatorWebAuthnChallenge; export declare function AuthenticatorWebAuthnChallengeFromJSON(json: any): AuthenticatorWebAuthnChallenge; export declare function AuthenticatorWebAuthnChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorWebAuthnChallenge; export declare function AuthenticatorWebAuthnChallengeToJSON(json: any): AuthenticatorWebAuthnChallenge; export declare function AuthenticatorWebAuthnChallengeToJSONTyped(value?: AuthenticatorWebAuthnChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorWebAuthnChallenge.d.ts.map