/** * 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'; /** * Static authenticator challenge * @export * @interface AuthenticatorStaticChallenge */ export interface AuthenticatorStaticChallenge { /** * * @type {ContextualFlowInfo} * @memberof AuthenticatorStaticChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof AuthenticatorStaticChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof AuthenticatorStaticChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof AuthenticatorStaticChallenge */ pendingUser: string; /** * * @type {string} * @memberof AuthenticatorStaticChallenge */ pendingUserAvatar: string; /** * * @type {Array} * @memberof AuthenticatorStaticChallenge */ codes: Array; } /** * Check if a given object implements the AuthenticatorStaticChallenge interface. */ export declare function instanceOfAuthenticatorStaticChallenge(value: object): value is AuthenticatorStaticChallenge; export declare function AuthenticatorStaticChallengeFromJSON(json: any): AuthenticatorStaticChallenge; export declare function AuthenticatorStaticChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorStaticChallenge; export declare function AuthenticatorStaticChallengeToJSON(json: any): AuthenticatorStaticChallenge; export declare function AuthenticatorStaticChallengeToJSONTyped(value?: AuthenticatorStaticChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorStaticChallenge.d.ts.map