Class BitflyerWithdrawRequest

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

public class BitflyerWithdrawRequest extends Object
Object representing body of request POST /v1/me/withdraw

Example { "currency_code": "JPY", "bank_account_id": 1234, "amount": 12000 }

Author:
bryant_harris
  • Constructor Details

    • BitflyerWithdrawRequest

      public BitflyerWithdrawRequest(String currencyCode, String bankAccountID, BigDecimal amount)
  • Method Details

    • getCurrencyCode

      public String getCurrencyCode()
    • setCurrencyCode

      public void setCurrencyCode(String currencyCode)
    • getBankAccountID

      public String getBankAccountID()
    • setBankAccountID

      public void setBankAccountID(String bankAccountID)
    • getAmount

      public BigDecimal getAmount()
    • setAmount

      public void setAmount(BigDecimal amount)
    • toString

      public String toString()
      Overrides:
      toString in class Object