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

org.knowm.xchange.bl3p.dto.account.Bl3pAccountInfo Maven / Gradle / Ivy

There is a newer version: 4.3.17.1
Show newest version
package org.knowm.xchange.bl3p.dto.account;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.math.BigDecimal;
import java.util.Map;
import org.knowm.xchange.bl3p.dto.Bl3pAmountObj;
import org.knowm.xchange.bl3p.dto.Bl3pResult;

public class Bl3pAccountInfo extends Bl3pResult {

  public static class Bl3pAccountInfoData {

    @JsonProperty("user_id")
    private long userId;

    @JsonProperty("trade_fee")
    private BigDecimal tradeFee;

    @JsonProperty("wallets")
    private Map wallets;

    public long getUserId() {
      return userId;
    }

    public BigDecimal getTradeFee() {
      return tradeFee;
    }

    public Map getWallets() {
      return wallets;
    }
  }

  public static class Bl3pAccountInfoWallet {

    @JsonProperty("available")
    private Bl3pAmountObj available;

    @JsonProperty("balance")
    private Bl3pAmountObj balance;

    public Bl3pAmountObj getAvailable() {
      return available;
    }

    public Bl3pAmountObj getBalance() {
      return balance;
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy