/** * 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 LoadDeviceRequestAllOf */ export interface LoadDeviceRequestAllOf { /** * * @type {TypesNumericU32} * @memberof LoadDeviceRequestAllOf */ u2f_counter?: TypesNumericU32; /** * * @type {boolean} * @memberof LoadDeviceRequestAllOf */ skip_checksum?: boolean; /** * * @type {string} * @memberof LoadDeviceRequestAllOf */ label?: string; /** * * @type {string} * @memberof LoadDeviceRequestAllOf */ language?: string; /** * * @type {boolean} * @memberof LoadDeviceRequestAllOf */ passphrase_protection?: boolean; /** * * @type {TypesNumericU32} * @memberof LoadDeviceRequestAllOf */ pin?: TypesNumericU32; } /** * Check if a given object implements the LoadDeviceRequestAllOf interface. */ export declare function instanceOfLoadDeviceRequestAllOf(value: object): boolean; export declare function LoadDeviceRequestAllOfFromJSON(json: any): LoadDeviceRequestAllOf; export declare function LoadDeviceRequestAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): LoadDeviceRequestAllOf; export declare function LoadDeviceRequestAllOfToJSON(value?: LoadDeviceRequestAllOf | null): any;