org.knowm.xchange.bl3p.dto.Bl3pTrade Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-bl3p Show documentation
Show all versions of xchange-bl3p Show documentation
XChange implementation for the Bl3p Exchange
package org.knowm.xchange.bl3p.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Date;
public class Bl3pTrade {
private Date date;
@JsonProperty("trade_id")
private long tradeId;
@JsonProperty("price_int")
private long priceInt;
@JsonProperty("amount_int")
private long amountInt;
public Bl3pTrade(@JsonProperty("date") long date) {
this.date = new Date(date);
}
public Date getDate() {
return date;
}
public long getTradeId() {
return tradeId;
}
public long getPriceInt() {
return priceInt;
}
public long getAmountInt() {
return amountInt;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy