cn.hyperchain.sdk.response.tx.TxCountResponse 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.tx;
import cn.hyperchain.sdk.response.Response;
import com.google.gson.annotations.Expose;
/**
* this class represents transaction count response.
*
* @author Jianhui Dong
* @ClassName TxCountResponse
* @date 2019-07-08
*/
public class TxCountResponse extends Response {
@Expose
private String result;
public String getResult() {
return result;
}
@Override
public String toString() {
return "TxCountResponse{" +
"result=" + result +
", jsonrpc='" + jsonrpc + '\'' +
", id='" + id + '\'' +
", code=" + code +
", message='" + message + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy