/** * 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'; import type { SelectableStage } from './SelectableStage'; import type { DeviceChallenge } from './DeviceChallenge'; /** * Authenticator challenge * @export * @interface AuthenticatorValidationChallenge */ export interface AuthenticatorValidationChallenge { /** * * @type {ContextualFlowInfo} * @memberof AuthenticatorValidationChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof AuthenticatorValidationChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof AuthenticatorValidationChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof AuthenticatorValidationChallenge */ pendingUser: string; /** * * @type {string} * @memberof AuthenticatorValidationChallenge */ pendingUserAvatar: string; /** * * @type {Array} * @memberof AuthenticatorValidationChallenge */ deviceChallenges: Array; /** * * @type {Array} * @memberof AuthenticatorValidationChallenge */ configurationStages: Array; } /** * Check if a given object implements the AuthenticatorValidationChallenge interface. */ export declare function instanceOfAuthenticatorValidationChallenge(value: object): value is AuthenticatorValidationChallenge; export declare function AuthenticatorValidationChallengeFromJSON(json: any): AuthenticatorValidationChallenge; export declare function AuthenticatorValidationChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorValidationChallenge; export declare function AuthenticatorValidationChallengeToJSON(json: any): AuthenticatorValidationChallenge; export declare function AuthenticatorValidationChallengeToJSONTyped(value?: AuthenticatorValidationChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorValidationChallenge.d.ts.map