/** * 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'; /** * Site public key * @export * @interface CaptchaChallenge */ export interface CaptchaChallenge { /** * * @type {ContextualFlowInfo} * @memberof CaptchaChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof CaptchaChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof CaptchaChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof CaptchaChallenge */ pendingUser: string; /** * * @type {string} * @memberof CaptchaChallenge */ pendingUserAvatar: string; /** * * @type {string} * @memberof CaptchaChallenge */ siteKey: string; /** * * @type {string} * @memberof CaptchaChallenge */ jsUrl: string; /** * * @type {boolean} * @memberof CaptchaChallenge */ interactive: boolean; } /** * Check if a given object implements the CaptchaChallenge interface. */ export declare function instanceOfCaptchaChallenge(value: object): value is CaptchaChallenge; export declare function CaptchaChallengeFromJSON(json: any): CaptchaChallenge; export declare function CaptchaChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaptchaChallenge; export declare function CaptchaChallengeToJSON(json: any): CaptchaChallenge; export declare function CaptchaChallengeToJSONTyped(value?: CaptchaChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CaptchaChallenge.d.ts.map