Class LatokenCurrency

java.lang.Object
org.knowm.xchange.latoken.dto.exchangeinfo.LatokenCurrency

public class LatokenCurrency extends Object
Response schema:
 {
        "currencyId": 102,
        "symbol": "LA",
        "name": "Latoken",
        "precission": 8,
        "type": "ERC20",
        "fee": 0.1
 }
 
Author:
Ezer
  • Constructor Details

    • LatokenCurrency

      public LatokenCurrency(long currencyId, String symbol, String name, int precision, String type, BigDecimal fee)
      C'tor
      Parameters:
      currencyId -
      symbol -
      name -
      precision -
      type -
      fee -
  • Method Details

    • getCurrencyId

      public long getCurrencyId()
      ID of currency
      Returns:
    • getSymbol

      public String getSymbol()
      Symbol of currency
      Returns:
    • getName

      public String getName()
      Name of currency
      Returns:
    • getPrecision

      public int getPrecision()
      Precision of currency
      Returns:
    • getType

      public String getType()
      Type of currency (e.g. "ERC20")
      Returns:
    • getFee

      public BigDecimal getFee()
      Transaction fee for currency
      Returns:
    • toString

      public String toString()
      Overrides:
      toString in class Object