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

com.xeiam.xchange.yacuna.dto.marketdata.YacunaCurrencyAmountPair Maven / Gradle / Ivy

package com.xeiam.xchange.yacuna.dto.marketdata;

import java.math.BigDecimal;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Created by Yingzhe on 12/26/2014.
 */
public class YacunaCurrencyAmountPair {

  private final String currency;
  private final BigDecimal amount;

  public YacunaCurrencyAmountPair(@JsonProperty("currency") String currency, @JsonProperty("amount") BigDecimal amount) {

    this.currency = currency;
    this.amount = amount;
  }

  public String getCurrency() {

    return this.currency;
  }

  public BigDecimal getAmount() {

    return this.amount;
  }

  @Override
  public String toString() {

    return String.format("[currency: %s, amount: %s]", currency, amount);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy