org.knowm.xchange.bl3p.dto.account.Bl3pAccountInfo 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
Development fork. Not for general use.
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