/** * 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 type to redirect the client * @export * @interface RedirectChallenge */ export interface RedirectChallenge { /** * * @type {ContextualFlowInfo} * @memberof RedirectChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof RedirectChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof RedirectChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof RedirectChallenge */ to: string; } /** * Check if a given object implements the RedirectChallenge interface. */ export declare function instanceOfRedirectChallenge(value: object): value is RedirectChallenge; export declare function RedirectChallengeFromJSON(json: any): RedirectChallenge; export declare function RedirectChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): RedirectChallenge; export declare function RedirectChallengeToJSON(json: any): RedirectChallenge; export declare function RedirectChallengeToJSONTyped(value?: RedirectChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RedirectChallenge.d.ts.map