/** * 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. */ /** * Identification challenge * @export * @interface IdentificationChallengeResponseRequest */ export interface IdentificationChallengeResponseRequest { /** * * @type {string} * @memberof IdentificationChallengeResponseRequest */ component?: string; /** * * @type {string} * @memberof IdentificationChallengeResponseRequest */ uidField: string; /** * * @type {string} * @memberof IdentificationChallengeResponseRequest */ password?: string | null; /** * * @type {string} * @memberof IdentificationChallengeResponseRequest */ captchaToken?: string | null; } /** * Check if a given object implements the IdentificationChallengeResponseRequest interface. */ export declare function instanceOfIdentificationChallengeResponseRequest(value: object): value is IdentificationChallengeResponseRequest; export declare function IdentificationChallengeResponseRequestFromJSON(json: any): IdentificationChallengeResponseRequest; export declare function IdentificationChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdentificationChallengeResponseRequest; export declare function IdentificationChallengeResponseRequestToJSON(json: any): IdentificationChallengeResponseRequest; export declare function IdentificationChallengeResponseRequestToJSONTyped(value?: IdentificationChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=IdentificationChallengeResponseRequest.d.ts.map