/** * 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 GetPublicKey200Response */ export interface GetPublicKey200Response { /** * * @type {string} * @memberof GetPublicKey200Response */ xpub: string; } /** * Check if a given object implements the GetPublicKey200Response interface. */ export declare function instanceOfGetPublicKey200Response(value: object): boolean; export declare function GetPublicKey200ResponseFromJSON(json: any): GetPublicKey200Response; export declare function GetPublicKey200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPublicKey200Response; export declare function GetPublicKey200ResponseToJSON(value?: GetPublicKey200Response | null): any;