/** * 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 { TypesNumericU32 } from './TypesNumericU32'; /** * * @export * @interface EthSignTransaction200Response */ export interface EthSignTransaction200Response { /** * 0x-prefixed hexadecimal octet string. (The empty string is `0x`.) * @type {string} * @memberof EthSignTransaction200Response */ serialized: string; /** * 0x-prefixed hexadecimal octet string. (The empty string is `0x`.) * @type {string} * @memberof EthSignTransaction200Response */ s: string; /** * 0x-prefixed hexadecimal octet string. (The empty string is `0x`.) * @type {string} * @memberof EthSignTransaction200Response */ r: string; /** * * @type {TypesNumericU32} * @memberof EthSignTransaction200Response */ v: TypesNumericU32; } /** * Check if a given object implements the EthSignTransaction200Response interface. */ export declare function instanceOfEthSignTransaction200Response(value: object): boolean; export declare function EthSignTransaction200ResponseFromJSON(json: any): EthSignTransaction200Response; export declare function EthSignTransaction200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EthSignTransaction200Response; export declare function EthSignTransaction200ResponseToJSON(value?: EthSignTransaction200Response | null): any;