/** * 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. */ /** * * @export * @interface LoadDeviceRequestAllOf1 */ export interface LoadDeviceRequestAllOf1 { /** * * @type {string} * @memberof LoadDeviceRequestAllOf1 */ mnemonic: string; /** * * @type {string} * @memberof LoadDeviceRequestAllOf1 */ xprv: string; } /** * Check if a given object implements the LoadDeviceRequestAllOf1 interface. */ export declare function instanceOfLoadDeviceRequestAllOf1(value: object): boolean; export declare function LoadDeviceRequestAllOf1FromJSON(json: any): LoadDeviceRequestAllOf1; export declare function LoadDeviceRequestAllOf1FromJSONTyped(json: any, ignoreDiscriminator: boolean): LoadDeviceRequestAllOf1; export declare function LoadDeviceRequestAllOf1ToJSON(value?: LoadDeviceRequestAllOf1 | null): any;