/** * 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 { TypesNumericU32 } from './TypesNumericU32'; /** * * @export * @interface LoadDeviceRequest */ export interface LoadDeviceRequest { /** * * @type {TypesNumericU32} * @memberof LoadDeviceRequest */ u2f_counter?: TypesNumericU32; /** * * @type {boolean} * @memberof LoadDeviceRequest */ skip_checksum?: boolean; /** * * @type {string} * @memberof LoadDeviceRequest */ label?: string; /** * * @type {string} * @memberof LoadDeviceRequest */ language?: string; /** * * @type {boolean} * @memberof LoadDeviceRequest */ passphrase_protection?: boolean; /** * * @type {TypesNumericU32} * @memberof LoadDeviceRequest */ pin?: TypesNumericU32; /** * * @type {string} * @memberof LoadDeviceRequest */ mnemonic: string; /** * * @type {string} * @memberof LoadDeviceRequest */ xprv: string; } /** * Check if a given object implements the LoadDeviceRequest interface. */ export declare function instanceOfLoadDeviceRequest(value: object): boolean; export declare function LoadDeviceRequestFromJSON(json: any): LoadDeviceRequest; export declare function LoadDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoadDeviceRequest; export declare function LoadDeviceRequestToJSON(value?: LoadDeviceRequest | null): any;