/** * 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 LoadDeviceRequestAllOf1AnyOf1 */ export interface LoadDeviceRequestAllOf1AnyOf1 { /** * * @type {string} * @memberof LoadDeviceRequestAllOf1AnyOf1 */ xprv: string; } /** * Check if a given object implements the LoadDeviceRequestAllOf1AnyOf1 interface. */ export declare function instanceOfLoadDeviceRequestAllOf1AnyOf1(value: object): boolean; export declare function LoadDeviceRequestAllOf1AnyOf1FromJSON(json: any): LoadDeviceRequestAllOf1AnyOf1; export declare function LoadDeviceRequestAllOf1AnyOf1FromJSONTyped(json: any, ignoreDiscriminator: boolean): LoadDeviceRequestAllOf1AnyOf1; export declare function LoadDeviceRequestAllOf1AnyOf1ToJSON(value?: LoadDeviceRequestAllOf1AnyOf1 | null): any;