/** * 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 EthereumGetAddress200Response */ export interface EthereumGetAddress200Response { /** * an ethereum address, possibly checksummed * @type {string} * @memberof EthereumGetAddress200Response */ address: string; } /** * Check if a given object implements the EthereumGetAddress200Response interface. */ export declare function instanceOfEthereumGetAddress200Response(value: object): boolean; export declare function EthereumGetAddress200ResponseFromJSON(json: any): EthereumGetAddress200Response; export declare function EthereumGetAddress200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EthereumGetAddress200Response; export declare function EthereumGetAddress200ResponseToJSON(value?: EthereumGetAddress200Response | null): any;