Class LatokenBalance
java.lang.Object
org.knowm.xchange.latoken.dto.account.LatokenBalance
public final class LatokenBalance extends Object
Response schema:
{ "currencyId": 102, "symbol": "LA", "name": "Latoken", "amount": 1054.66, "available": 900.66, "frozen": 154, "pending": 0 }
- Author:
- Ezer
-
Constructor Summary
Constructors Constructor Description LatokenBalance(String currencyId, String symbol, String name, BigDecimal amount, BigDecimal available, BigDecimal frozen, BigDecimal pending)
-
Method Summary
Modifier and Type Method Description BigDecimal
getAmount()
Total amount of balanceBigDecimal
getAvailable()
Available amount of balanceString
getCurrencyId()
Id of currencyBigDecimal
getFrozen()
Amount frozen by orders or transactions amountString
getName()
Name of currencyBigDecimal
getPending()
String
getSymbol()
Symbol of currencyString
toString()
-
Constructor Details
-
LatokenBalance
public LatokenBalance(String currencyId, String symbol, String name, BigDecimal amount, BigDecimal available, BigDecimal frozen, BigDecimal pending)
-
-
Method Details
-
getCurrencyId
Id of currency- Returns:
-
getSymbol
Symbol of currency- Returns:
-
getName
Name of currency- Returns:
-
getAmount
Total amount of balance- Returns:
-
getAvailable
Available amount of balance- Returns:
-
getFrozen
Amount frozen by orders or transactions amount- Returns:
-
getPending
-
toString
-