/** * 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'; /** * Duo Challenge * @export * @interface AuthenticatorDuoChallenge */ export interface AuthenticatorDuoChallenge { /** * * @type {ContextualFlowInfo} * @memberof AuthenticatorDuoChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof AuthenticatorDuoChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ pendingUser: string; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ pendingUserAvatar: string; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ activationBarcode: string; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ activationCode: string; /** * * @type {string} * @memberof AuthenticatorDuoChallenge */ stageUuid: string; } /** * Check if a given object implements the AuthenticatorDuoChallenge interface. */ export declare function instanceOfAuthenticatorDuoChallenge(value: object): value is AuthenticatorDuoChallenge; export declare function AuthenticatorDuoChallengeFromJSON(json: any): AuthenticatorDuoChallenge; export declare function AuthenticatorDuoChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorDuoChallenge; export declare function AuthenticatorDuoChallengeToJSON(json: any): AuthenticatorDuoChallenge; export declare function AuthenticatorDuoChallengeToJSONTyped(value?: AuthenticatorDuoChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorDuoChallenge.d.ts.map