tech.coinbub.daemon.normalization.model.Transaction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of daemon-utils Show documentation
Show all versions of daemon-utils Show documentation
Common utilities for daemon integrations
The newest version!
package tech.coinbub.daemon.normalization.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.math.BigDecimal;
import java.util.List;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Transaction {
public String id;
public BigDecimal amount;
public BigDecimal fee;
public Long time;
public Long size;
public Long confirmations;
public String blockhash;
public String comment_from;
public String comment_to;
public List details;
}