/** * 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 when a flow's active stage calls `stage_invalid()`. * @export * @interface AccessDeniedChallenge */ export interface AccessDeniedChallenge { /** * * @type {ContextualFlowInfo} * @memberof AccessDeniedChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof AccessDeniedChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof AccessDeniedChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof AccessDeniedChallenge */ pendingUser: string; /** * * @type {string} * @memberof AccessDeniedChallenge */ pendingUserAvatar: string; /** * * @type {string} * @memberof AccessDeniedChallenge */ errorMessage?: string; } /** * Check if a given object implements the AccessDeniedChallenge interface. */ export declare function instanceOfAccessDeniedChallenge(value: object): value is AccessDeniedChallenge; export declare function AccessDeniedChallengeFromJSON(json: any): AccessDeniedChallenge; export declare function AccessDeniedChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessDeniedChallenge; export declare function AccessDeniedChallengeToJSON(json: any): AccessDeniedChallenge; export declare function AccessDeniedChallengeToJSONTyped(value?: AccessDeniedChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AccessDeniedChallenge.d.ts.map