/** * 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'; /** * Empty challenge * @export * @interface UserLoginChallenge */ export interface UserLoginChallenge { /** * * @type {ContextualFlowInfo} * @memberof UserLoginChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof UserLoginChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof UserLoginChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof UserLoginChallenge */ pendingUser: string; /** * * @type {string} * @memberof UserLoginChallenge */ pendingUserAvatar: string; } /** * Check if a given object implements the UserLoginChallenge interface. */ export declare function instanceOfUserLoginChallenge(value: object): value is UserLoginChallenge; export declare function UserLoginChallengeFromJSON(json: any): UserLoginChallenge; export declare function UserLoginChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserLoginChallenge; export declare function UserLoginChallengeToJSON(json: any): UserLoginChallenge; export declare function UserLoginChallengeToJSONTyped(value?: UserLoginChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserLoginChallenge.d.ts.map