/** * 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. */ /** * TOTP Challenge response, device is set by get_response_instance * @export * @interface AuthenticatorTOTPChallengeResponseRequest */ export interface AuthenticatorTOTPChallengeResponseRequest { /** * * @type {string} * @memberof AuthenticatorTOTPChallengeResponseRequest */ component?: string; /** * * @type {number} * @memberof AuthenticatorTOTPChallengeResponseRequest */ code: number; } /** * Check if a given object implements the AuthenticatorTOTPChallengeResponseRequest interface. */ export declare function instanceOfAuthenticatorTOTPChallengeResponseRequest(value: object): value is AuthenticatorTOTPChallengeResponseRequest; export declare function AuthenticatorTOTPChallengeResponseRequestFromJSON(json: any): AuthenticatorTOTPChallengeResponseRequest; export declare function AuthenticatorTOTPChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorTOTPChallengeResponseRequest; export declare function AuthenticatorTOTPChallengeResponseRequestToJSON(json: any): AuthenticatorTOTPChallengeResponseRequest; export declare function AuthenticatorTOTPChallengeResponseRequestToJSONTyped(value?: AuthenticatorTOTPChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorTOTPChallengeResponseRequest.d.ts.map