Class: BinanceClient::CoinsInfoResponse

Inherits:
BaseResponse show all
Defined in:
lib/binance_client/responses/coins_info_response.rb

Instance Method Summary collapse

Methods inherited from BaseResponse

#body_code, #default_message, #used_weights

Instance Method Details

#coinsObject



4
5
6
7
8
# File 'lib/binance_client/responses/coins_info_response.rb', line 4

def coins
  @coins ||= body.map do |coin_hash|
    Coin.new(raw_hash: coin_hash)
  end
end