/** * 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'; /** * Dummy challenge * @export * @interface DummyChallenge */ export interface DummyChallenge { /** * * @type {ContextualFlowInfo} * @memberof DummyChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof DummyChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof DummyChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof DummyChallenge */ name: string; } /** * Check if a given object implements the DummyChallenge interface. */ export declare function instanceOfDummyChallenge(value: object): value is DummyChallenge; export declare function DummyChallengeFromJSON(json: any): DummyChallenge; export declare function DummyChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DummyChallenge; export declare function DummyChallengeToJSON(json: any): DummyChallenge; export declare function DummyChallengeToJSONTyped(value?: DummyChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DummyChallenge.d.ts.map