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

com.yanxisir.neb.bean.BlockByHashReq Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
package com.yanxisir.neb.bean;

import com.alibaba.fastjson.annotation.JSONField;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.io.Serializable;

/**
 * @author YanxiSir
 * @since 2018/5/19
 */
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class BlockByHashReq implements Serializable {

    private String hash;

    /**
     * If true it returns the full transaction objects, if false only the hashes of the transactions.
     */
    @JSONField(name = "full_fill_transaction")
    private Boolean fullFillTransaction;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy