/** * 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. */ import type { TypesEthSignature } from './TypesEthSignature'; /** * * @export * @interface EthVerifyRequest */ export interface EthVerifyRequest { /** * * @type {TypesEthSignature} * @memberof EthVerifyRequest */ signature: TypesEthSignature; /** * an ethereum address, possibly checksummed * @type {string} * @memberof EthVerifyRequest */ address: string; /** * 0x-prefixed hexadecimal octet string. (The empty string is `0x`.) * @type {string} * @memberof EthVerifyRequest */ message: string; } /** * Check if a given object implements the EthVerifyRequest interface. */ export declare function instanceOfEthVerifyRequest(value: object): boolean; export declare function EthVerifyRequestFromJSON(json: any): EthVerifyRequest; export declare function EthVerifyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EthVerifyRequest; export declare function EthVerifyRequestToJSON(value?: EthVerifyRequest | null): any;