class Kucoin::Api::Endpoints::User::Deposits

Public Instance Methods

all(options={})
Alias for: index
create(currency) click to toggle source
# File lib/kucoin/api/endpoints/user/deposits.rb, line 7
def create currency
  auth.ku_request :post, :create, currency: currency
end
detail(currency)
Alias for: show
get(currency)
Alias for: show
index(options={}) click to toggle source
# File lib/kucoin/api/endpoints/user/deposits.rb, line 11
def index options={}
  auth.ku_request :get, :index, **options
end
Also aliased as: all, list
list(options={})
Alias for: index
show(currency) click to toggle source
# File lib/kucoin/api/endpoints/user/deposits.rb, line 17
def show currency
  auth.ku_request :get, :show, currency: currency
end
Also aliased as: get, detail