Class BitflyerCoinHistory

java.lang.Object
org.knowm.xchange.bitflyer.dto.account.BitflyerBaseHistoryResponse
org.knowm.xchange.bitflyer.dto.account.BitflyerCoinHistory

public class BitflyerCoinHistory extends BitflyerBaseHistoryResponse
Object representing json returned from GET /v1/me/getcoinins or GET /v1/me/getcoinouts

Example getcoinins

{
    "id": 100,
    "order_id": "CDP20151227-024141-055555",
    "currency_code": "BTC",
    "amount": 0.00002,
    "address": "1WriteySQufKZ2pVuM1oMhPrTtTVFq35j",
    "tx_hash": "9f92ee65a176bb9545f7becb8706c50d07d4cee5ffca34d8be3ef11d411405ae",
    "status": "COMPLETED",
    "event_date": "2015-11-27T08:59:20.301"
  }

Example getcoinouts

{
     "id": 500,
     "order_id": "CWD20151224-014040-077777",
     "currency_code": "BTC",
     "amount": 0.1234,
     "address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
     "tx_hash": "724c07dfd4044abcb390b0412c3e707dd5c4f373f0a52b3bd295ce32b478c60a",
     "fee": 0.0005,
     "additional_fee": 0.0001,
     "status": "COMPLETED",
     "event_date": "2015-12-24T01:40:40.397"
   }
Author:
bryant_harris
  • Constructor Details

    • BitflyerCoinHistory

      public BitflyerCoinHistory()
  • Method Details

    • getAddress

      public String getAddress()
    • setAddress

      public void setAddress(String address)
    • getFee

      public BigDecimal getFee()
    • setFee

      public void setFee(BigDecimal fee)
    • getAdditionalFee

      public BigDecimal getAdditionalFee()
    • setAdditionalFee

      public void setAdditionalFee(BigDecimal additionalFee)
    • getTxHash

      public String getTxHash()
    • setTxHash

      public void setTxHash(String txHash)
    • toString

      public String toString()
      Overrides:
      toString in class Object