module BitflyerApi::Methods::Private::Assets

Public Instance Methods

my_balance() click to toggle source
# File lib/bitflyer_api/methods/private/assets.rb, line 3
def my_balance
  res = conn.get("/v1/me/getbalance")
  res.body
end
my_collateral() click to toggle source
# File lib/bitflyer_api/methods/private/assets.rb, line 8
def my_collateral
  res = conn.get("/v1/me/getcollateral")
  res.body
end
my_collateral_accounts() click to toggle source
# File lib/bitflyer_api/methods/private/assets.rb, line 13
def my_collateral_accounts
  res = conn.get("/v1/me/getcollateralaccounts")
  res.body
end