cn.hyperchain.sdk.response.contract.DeployerListResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of litesdk Show documentation
Show all versions of litesdk Show documentation
A Java client tool for Hyperchain
package cn.hyperchain.sdk.response.contract;
import cn.hyperchain.sdk.response.Response;
import com.google.gson.annotations.Expose;
import java.util.List;
public class DeployerListResponse extends Response {
@Expose
private List result;
public List getResult() {
return result;
}
@Override
public String toString() {
return "DeployerListResponse{" +
"jsonrpc='" + jsonrpc + '\'' +
", id='" + id + '\'' +
", code=" + code +
", message='" + message + '\'' +
", namespace='" + namespace + '\'' +
", result=" + result +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy