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

org.knowm.xchange.bl3p.dto.Bl3pAmountObj Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
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