org.knowm.xchange.bl3p.dto.Bl3pAmountObj 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.math.BigDecimal;
public class Bl3pAmountObj {
@JsonProperty("value_int")
public long valueInt;
@JsonProperty("display_short")
public String displayShort;
@JsonProperty("display")
public String display;
@JsonProperty("currency")
public String currency;
@JsonProperty("value")
public BigDecimal value;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy