Class: BinanceClient::SubAccountTransferHistoryResponse
- Inherits:
-
BaseResponse
- Object
- BaseResponse
- BinanceClient::SubAccountTransferHistoryResponse
show all
- Defined in:
- lib/binance_client/responses/sub_account_transfer_history_response.rb
Instance Method Summary
collapse
#body_code, #default_message, #used_weights
Instance Method Details
#transfers ⇒ Object
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
|