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