/** * 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 { DeviceChallengeRequest } from './DeviceChallengeRequest'; /** * Challenge used for Code-based and WebAuthn authenticators * @export * @interface AuthenticatorValidationChallengeResponseRequest */ export interface AuthenticatorValidationChallengeResponseRequest { /** * * @type {string} * @memberof AuthenticatorValidationChallengeResponseRequest */ component?: string; /** * * @type {DeviceChallengeRequest} * @memberof AuthenticatorValidationChallengeResponseRequest */ selectedChallenge?: DeviceChallengeRequest; /** * * @type {string} * @memberof AuthenticatorValidationChallengeResponseRequest */ selectedStage?: string; /** * * @type {string} * @memberof AuthenticatorValidationChallengeResponseRequest */ code?: string; /** * * @type {{ [key: string]: any; }} * @memberof AuthenticatorValidationChallengeResponseRequest */ webauthn?: { [key: string]: any; }; /** * * @type {number} * @memberof AuthenticatorValidationChallengeResponseRequest */ duo?: number; } /** * Check if a given object implements the AuthenticatorValidationChallengeResponseRequest interface. */ export declare function instanceOfAuthenticatorValidationChallengeResponseRequest(value: object): value is AuthenticatorValidationChallengeResponseRequest; export declare function AuthenticatorValidationChallengeResponseRequestFromJSON(json: any): AuthenticatorValidationChallengeResponseRequest; export declare function AuthenticatorValidationChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorValidationChallengeResponseRequest; export declare function AuthenticatorValidationChallengeResponseRequestToJSON(json: any): AuthenticatorValidationChallengeResponseRequest; export declare function AuthenticatorValidationChallengeResponseRequestToJSONTyped(value?: AuthenticatorValidationChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorValidationChallengeResponseRequest.d.ts.map