/** * 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 UtxoGetAddress200Response */ export interface UtxoGetAddress200Response { /** * * @type {any} * @memberof UtxoGetAddress200Response */ address: any | null; } /** * Check if a given object implements the UtxoGetAddress200Response interface. */ export declare function instanceOfUtxoGetAddress200Response(value: object): boolean; export declare function UtxoGetAddress200ResponseFromJSON(json: any): UtxoGetAddress200Response; export declare function UtxoGetAddress200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UtxoGetAddress200Response; export declare function UtxoGetAddress200ResponseToJSON(value?: UtxoGetAddress200Response | null): any;