com.yanxisir.neb.bean.EventsByHashResp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neb-call Show documentation
Show all versions of neb-call Show documentation
A http toolkit for nebulas
package com.yanxisir.neb.bean;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.io.Serializable;
import java.math.BigInteger;
import java.util.List;
/**
* @author YanxiSir
* @since 2018/5/21
*/
@Data
public class EventsByHashResp implements Serializable {
private List events;
@Data
public static class Event implements Serializable {
private String topic;
private SubData data;
}
@Data
public static class SubData implements Serializable {
private String hash;
private Integer status;
@JSONField(name = "gas_used")
private BigInteger gasUsed;
private String error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy