/** * 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 render a frame * @export * @interface FrameChallenge */ export interface FrameChallenge { /** * * @type {ContextualFlowInfo} * @memberof FrameChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof FrameChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof FrameChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof FrameChallenge */ url: string; /** * * @type {boolean} * @memberof FrameChallenge */ loadingOverlay?: boolean; /** * * @type {string} * @memberof FrameChallenge */ loadingText: string; } /** * Check if a given object implements the FrameChallenge interface. */ export declare function instanceOfFrameChallenge(value: object): value is FrameChallenge; export declare function FrameChallengeFromJSON(json: any): FrameChallenge; export declare function FrameChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): FrameChallenge; export declare function FrameChallengeToJSON(json: any): FrameChallenge; export declare function FrameChallengeToJSONTyped(value?: FrameChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FrameChallenge.d.ts.map