Class BitflyerBankAccount

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

public class BitflyerBankAccount extends Object
Object representing json returned from GET /v1/me/getbankaccounts

Example [ { "id": 3402, "is_verified": true, "bank_name": "Wells Fargo", "branch_name": "1231234123", "account_type": "Checking", "account_number": "1111111", "account_name": "Name on Account" } ]

Author:
bryant_harris
  • Constructor Details

    • BitflyerBankAccount

      public BitflyerBankAccount()
  • Method Details

    • getId

      public Long getId()
    • setId

      public void setId(Long id)
    • isVerified

      public boolean isVerified()
    • setVerified

      public void setVerified(boolean isVerified)
    • getBankName

      public String getBankName()
    • setBankName

      public void setBankName(String bankName)
    • getBranchName

      public String getBranchName()
    • setBranchName

      public void setBranchName(String branchName)
    • getAccountType

      public String getAccountType()
    • setAccountType

      public void setAccountType(String accountType)
    • getAccountNumber

      public String getAccountNumber()
    • setAccountNumber

      public void setAccountNumber(String accountNumber)
    • getAccountName

      public String getAccountName()
    • setAccountName

      public void setAccountName(String accountName)
    • toString

      public String toString()
      Overrides:
      toString in class Object