cn.hyperchain.sdk.response.contract.StringResponse 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;
/**
* @author Wangwenqiang
* @version 0.0.1
* @ClassName StringResponse
*/
public class StringResponse extends Response {
@Expose
private String result;
public String getResult() {
return result;
}
@Override
public String toString() {
return "CompileCodeResponse{" +
"result='" + result + '\'' +
", jsonrpc='" + jsonrpc + '\'' +
", id='" + id + '\'' +
", code=" + code +
", message='" + message + '\'' +
", namespace='" + namespace + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy