/** * 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'; /** * Email challenge * @export * @interface EmailChallenge */ export interface EmailChallenge { /** * * @type {ContextualFlowInfo} * @memberof EmailChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof EmailChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof EmailChallenge */ responseErrors?: { [key: string]: Array; }; } /** * Check if a given object implements the EmailChallenge interface. */ export declare function instanceOfEmailChallenge(value: object): value is EmailChallenge; export declare function EmailChallengeFromJSON(json: any): EmailChallenge; export declare function EmailChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailChallenge; export declare function EmailChallengeToJSON(json: any): EmailChallenge; export declare function EmailChallengeToJSONTyped(value?: EmailChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EmailChallenge.d.ts.map