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