Class: BinanceClient::SubAccountTransferHistoryResponse

Inherits:
BaseResponse
  • Object
show all
Defined in:
lib/binance_client/responses/sub_account_transfer_history_response.rb

Instance Method Summary collapse

Methods inherited from BaseResponse

#body_code, #default_message, #used_weights

Instance Method Details

#transfersObject



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

def transfers
  @transfers ||= body.map do |hash|
    Transfer.new(raw_hash: hash)
  end
end