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

cn.hyperchain.sdk.response.tx.TxCountWithTSResponse Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package cn.hyperchain.sdk.response.tx;

import cn.hyperchain.sdk.response.Response;
import com.google.gson.annotations.Expose;

/**
 * this class represents transaction count with time field response.
 *
 * @author Jianhui Dong
 * @ClassName TxCountWithTSResponse
 * @date 2019-07-08
 */
public class TxCountWithTSResponse extends Response {
    public class TxCount {
        @Expose
        private String count;
        @Expose
        private long timestamp;

        public String getCount() {
            return count;
        }

        public long getTimestamp() {
            return timestamp;
        }

        @Override
        public String toString() {
            return "TxCount{" +
                    "count='" + count + '\'' +
                    ", timestamp=" + timestamp +
                    '}';
        }
    }

    @Expose
    private TxCount result;

    public TxCount 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