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

cn.hyperchain.sdk.response.ReceiptListResponse Maven / Gradle / Ivy

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

import com.google.gson.annotations.Expose;
import java.util.ArrayList;


/**
 * @author Wangwenqiang
 * @version 0.0.1
 * @ClassName ReceiptListResponse
 */
public class ReceiptListResponse extends Response {
    @Expose
    private ArrayList result;

    public ReceiptListResponse() {
    }

    @Override
    public String toString() {
        return "ReceiptListResponse{"
                + "result=" + result
                + ", jsonrpc='" + jsonrpc + '\''
                + ", id='" + id + '\''
                + ", code=" + code
                + ", message='" + message + '\''
                + ", namespace='" + namespace + '\''
                + '}';
    }

    public ArrayList getResult() {
        return result;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy