/** * 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 HTML as-is * @export * @interface ShellChallenge */ export interface ShellChallenge { /** * * @type {ContextualFlowInfo} * @memberof ShellChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof ShellChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof ShellChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof ShellChallenge */ body: string; } /** * Check if a given object implements the ShellChallenge interface. */ export declare function instanceOfShellChallenge(value: object): value is ShellChallenge; export declare function ShellChallengeFromJSON(json: any): ShellChallenge; export declare function ShellChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShellChallenge; export declare function ShellChallengeToJSON(json: any): ShellChallenge; export declare function ShellChallengeToJSONTyped(value?: ShellChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ShellChallenge.d.ts.map