/** * 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'; import type { StagePrompt } from './StagePrompt'; /** * Initial challenge being sent, define fields * @export * @interface PromptChallenge */ export interface PromptChallenge { /** * * @type {ContextualFlowInfo} * @memberof PromptChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof PromptChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof PromptChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {Array} * @memberof PromptChallenge */ fields: Array; } /** * Check if a given object implements the PromptChallenge interface. */ export declare function instanceOfPromptChallenge(value: object): value is PromptChallenge; export declare function PromptChallengeFromJSON(json: any): PromptChallenge; export declare function PromptChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PromptChallenge; export declare function PromptChallengeToJSON(json: any): PromptChallenge; export declare function PromptChallengeToJSONTyped(value?: PromptChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PromptChallenge.d.ts.map