/** * 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 RecoverDeviceRequest */ export interface RecoverDeviceRequest { /** * perform dry-run recovery workflow (for safe mnemonic validation) * @type {boolean} * @memberof RecoverDeviceRequest */ dry_run?: boolean; /** * * @type {TypesNumericU32} * @memberof RecoverDeviceRequest */ u2f_counter?: TypesNumericU32; /** * * @type {RecoverDeviceRequestAutoLockDelayMs} * @memberof RecoverDeviceRequest */ auto_lock_delay_ms?: RecoverDeviceRequestAutoLockDelayMs; /** * don't enforce BIP-39 wordlist during the process * @type {boolean} * @memberof RecoverDeviceRequest */ no_enforce_wordlist?: boolean; /** * * @type {string} * @memberof RecoverDeviceRequest */ label?: string; /** * * @type {string} * @memberof RecoverDeviceRequest */ language?: string; /** * * @type {boolean} * @memberof RecoverDeviceRequest */ pin_protection?: boolean; /** * * @type {boolean} * @memberof RecoverDeviceRequest */ passphrase_protection?: boolean; /** * * @type {number} * @memberof RecoverDeviceRequest */ word_count: RecoverDeviceRequestWordCountEnum; } /** * @export */ export declare const RecoverDeviceRequestWordCountEnum: { readonly NUMBER_12: 12; readonly NUMBER_18: 18; readonly NUMBER_24: 24; }; export type RecoverDeviceRequestWordCountEnum = typeof RecoverDeviceRequestWordCountEnum[keyof typeof RecoverDeviceRequestWordCountEnum]; /** * Check if a given object implements the RecoverDeviceRequest interface. */ export declare function instanceOfRecoverDeviceRequest(value: object): boolean; export declare function RecoverDeviceRequestFromJSON(json: any): RecoverDeviceRequest; export declare function RecoverDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RecoverDeviceRequest; export declare function RecoverDeviceRequestToJSON(value?: RecoverDeviceRequest | null): any;