Class BitflyerAddress

java.lang.Object
org.knowm.xchange.bitflyer.dto.account.BitflyerAddress

public class BitflyerAddress extends Object
Object representing json returned from GET /v1/me/getaddresses

Example [ { "type": "NORMAL", "currency_code": "BTC", "address": "3AYrDq8zhF82NJ2ZaLwBMPmaNziaKPaxa7" }, { "type": "NORMAL", "currency_code": "ETH", "address": "0x7fbB2CC24a3C0cd3789a44e9073381Ca6470853f" } ]

Author:
bryant_harris
  • Constructor Details

    • BitflyerAddress

      public BitflyerAddress()
  • Method Details

    • getType

      public String getType()
    • setType

      public void setType(String type)
    • getCurrencyCode

      public String getCurrencyCode()
    • setCurrencyCode

      public void setCurrencyCode(String currency_code)
    • getAddress

      public String getAddress()
    • setAddress

      public void setAddress(String address)
    • toString

      public String toString()
      Overrides:
      toString in class Object