/** * keepkey-sdk-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.1 * * * 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 { RecoverDeviceRequestAutoLockDelayMs } from './RecoverDeviceRequestAutoLockDelayMs'; import type { TypesNumericU32 } from './TypesNumericU32'; /** * * @export * @interface ResetDeviceRequest */ export interface ResetDeviceRequest { /** * * @type {TypesNumericU32} * @memberof ResetDeviceRequest */ u2f_counter?: TypesNumericU32; /** * * @type {RecoverDeviceRequestAutoLockDelayMs} * @memberof ResetDeviceRequest */ auto_lock_delay_ms?: RecoverDeviceRequestAutoLockDelayMs; /** * Initialize without ever showing the recovery sentence * @type {boolean} * @memberof ResetDeviceRequest */ no_backup?: boolean; /** * * @type {string} * @memberof ResetDeviceRequest */ label?: string; /** * * @type {string} * @memberof ResetDeviceRequest */ language?: string; /** * * @type {boolean} * @memberof ResetDeviceRequest */ pin_protection?: boolean; /** * * @type {boolean} * @memberof ResetDeviceRequest */ passphrase_protection?: boolean; /** * * @type {number} * @memberof ResetDeviceRequest */ strength?: ResetDeviceRequestStrengthEnum; /** * Display entropy generated by the device before asking for additional entropy * @type {boolean} * @memberof ResetDeviceRequest */ display_random?: boolean; } /** * @export */ export declare const ResetDeviceRequestStrengthEnum: { readonly NUMBER_128: 128; readonly NUMBER_192: 192; readonly NUMBER_256: 256; }; export type ResetDeviceRequestStrengthEnum = typeof ResetDeviceRequestStrengthEnum[keyof typeof ResetDeviceRequestStrengthEnum]; /** * Check if a given object implements the ResetDeviceRequest interface. */ export declare function instanceOfResetDeviceRequest(value: object): boolean; export declare function ResetDeviceRequestFromJSON(json: any): ResetDeviceRequest; export declare function ResetDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResetDeviceRequest; export declare function ResetDeviceRequestToJSON(value?: ResetDeviceRequest | null): any;