All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.api.etherscan.model.proxy.utility.BaseProxyTO Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package io.api.etherscan.model.proxy.utility;

/**
 * ! NO DESCRIPTION !
 *
 * @author GoodforGod
 * @since 31.10.2018
 */
abstract class BaseProxyTO {

    private String id;
    private String jsonrpc;
    private ErrorProxyTO error;

    public String getId() {
        return id;
    }

    public String getJsonrpc() {
        return jsonrpc;
    }

    public ErrorProxyTO getError() {
        return error;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy