class Kucoin::Api::Endpoints::Markets::Currencies

Public Instance Methods

all(options={})
Alias for: index
detail(currency)
Alias for: show
fiat(options= {}) click to toggle source
# File lib/kucoin/api/endpoints/markets/currencies.rb, line 12
def fiat options= {}
  open.ku_request :get, :fiat, options
end
index(options={}) click to toggle source
# File lib/kucoin/api/endpoints/markets/currencies.rb, line 7
def index options={}
  open.ku_request :get, :index, options
end
Also aliased as: all
show(currency) click to toggle source
# File lib/kucoin/api/endpoints/markets/currencies.rb, line 16
def show currency
  open.ku_request :get, :show, currency: currency
end
Also aliased as: detail