/** * 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'; /** * Challenge class when an unhandled error occurs during a stage. Normal users * are shown an error message, superusers are shown a full stacktrace. * @export * @interface FlowErrorChallenge */ export interface FlowErrorChallenge { /** * * @type {ContextualFlowInfo} * @memberof FlowErrorChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof FlowErrorChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof FlowErrorChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof FlowErrorChallenge */ requestId: string; /** * * @type {string} * @memberof FlowErrorChallenge */ error?: string; /** * * @type {string} * @memberof FlowErrorChallenge */ traceback?: string; } /** * Check if a given object implements the FlowErrorChallenge interface. */ export declare function instanceOfFlowErrorChallenge(value: object): value is FlowErrorChallenge; export declare function FlowErrorChallengeFromJSON(json: any): FlowErrorChallenge; export declare function FlowErrorChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowErrorChallenge; export declare function FlowErrorChallengeToJSON(json: any): FlowErrorChallenge; export declare function FlowErrorChallengeToJSONTyped(value?: FlowErrorChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FlowErrorChallenge.d.ts.map