/** * 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. */ /** * Redirect challenge response * @export * @interface RedirectChallengeResponseRequest */ export interface RedirectChallengeResponseRequest { /** * * @type {string} * @memberof RedirectChallengeResponseRequest */ component?: string; /** * * @type {string} * @memberof RedirectChallengeResponseRequest */ to: string; } /** * Check if a given object implements the RedirectChallengeResponseRequest interface. */ export declare function instanceOfRedirectChallengeResponseRequest(value: object): value is RedirectChallengeResponseRequest; export declare function RedirectChallengeResponseRequestFromJSON(json: any): RedirectChallengeResponseRequest; export declare function RedirectChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RedirectChallengeResponseRequest; export declare function RedirectChallengeResponseRequestToJSON(json: any): RedirectChallengeResponseRequest; export declare function RedirectChallengeResponseRequestToJSONTyped(value?: RedirectChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RedirectChallengeResponseRequest.d.ts.map