Class: BinanceClient::SubAccountDepositHistoryResponse

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

Instance Method Summary collapse

Methods inherited from BaseResponse

#body_code, #default_message, #used_weights

Instance Method Details

#depositsObject



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

def deposits
  body.map do |deposit_hash|
    Deposit.new(raw_hash: deposit_hash)
  end
end