module Binance::Spot::Savings
def savings_interest_history(lendingType:, **kwargs)
- See: https://binance-docs.github.io/apidocs/spot/en/#get-interest-history-user_data-2 -
Options Hash:
(**kwargs)
-
:recvWindow
(Integer
) -- The value cannot be greater than 60000 -
:size
(Integer
) -- -
:current
(Integer
) -- -
:endTime
(Integer
) -- -
:startTime
(Integer
) -- -
:asset
(String
) --
Parameters:
-
kwargs
(Hash
) -- -
lendingType
(String
) --
def savings_interest_history(lendingType:, **kwargs) Binance::Utils::Validation.require_param('lendingType', lendingType) @session.sign_request(:get, '/sapi/v1/lending/union/interestHistory', params: kwargs.merge( lendingType: lendingType )) end