/** * 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'; /** * Password challenge UI fields * @export * @interface PasswordChallenge */ export interface PasswordChallenge { /** * * @type {ContextualFlowInfo} * @memberof PasswordChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof PasswordChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof PasswordChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof PasswordChallenge */ pendingUser: string; /** * * @type {string} * @memberof PasswordChallenge */ pendingUserAvatar: string; /** * * @type {string} * @memberof PasswordChallenge */ recoveryUrl?: string; /** * * @type {boolean} * @memberof PasswordChallenge */ allowShowPassword?: boolean; } /** * Check if a given object implements the PasswordChallenge interface. */ export declare function instanceOfPasswordChallenge(value: object): value is PasswordChallenge; export declare function PasswordChallengeFromJSON(json: any): PasswordChallenge; export declare function PasswordChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordChallenge; export declare function PasswordChallengeToJSON(json: any): PasswordChallenge; export declare function PasswordChallengeToJSONTyped(value?: PasswordChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PasswordChallenge.d.ts.map