/** * 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. */ /** * Validate captcha token * @export * @interface CaptchaChallengeResponseRequest */ export interface CaptchaChallengeResponseRequest { /** * * @type {string} * @memberof CaptchaChallengeResponseRequest */ component?: string; /** * * @type {string} * @memberof CaptchaChallengeResponseRequest */ token: string; } /** * Check if a given object implements the CaptchaChallengeResponseRequest interface. */ export declare function instanceOfCaptchaChallengeResponseRequest(value: object): value is CaptchaChallengeResponseRequest; export declare function CaptchaChallengeResponseRequestFromJSON(json: any): CaptchaChallengeResponseRequest; export declare function CaptchaChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaptchaChallengeResponseRequest; export declare function CaptchaChallengeResponseRequestToJSON(json: any): CaptchaChallengeResponseRequest; export declare function CaptchaChallengeResponseRequestToJSONTyped(value?: CaptchaChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CaptchaChallengeResponseRequest.d.ts.map