/** * 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'; /** * TOTP Setup challenge * @export * @interface AuthenticatorTOTPChallenge */ export interface AuthenticatorTOTPChallenge { /** * * @type {ContextualFlowInfo} * @memberof AuthenticatorTOTPChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof AuthenticatorTOTPChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof AuthenticatorTOTPChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof AuthenticatorTOTPChallenge */ pendingUser: string; /** * * @type {string} * @memberof AuthenticatorTOTPChallenge */ pendingUserAvatar: string; /** * * @type {string} * @memberof AuthenticatorTOTPChallenge */ configUrl: string; } /** * Check if a given object implements the AuthenticatorTOTPChallenge interface. */ export declare function instanceOfAuthenticatorTOTPChallenge(value: object): value is AuthenticatorTOTPChallenge; export declare function AuthenticatorTOTPChallengeFromJSON(json: any): AuthenticatorTOTPChallenge; export declare function AuthenticatorTOTPChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorTOTPChallenge; export declare function AuthenticatorTOTPChallengeToJSON(json: any): AuthenticatorTOTPChallenge; export declare function AuthenticatorTOTPChallengeToJSONTyped(value?: AuthenticatorTOTPChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorTOTPChallenge.d.ts.map