module Binance::Spot::Futures
def repay_with_collateral(quoteId:, **kwargs)
- See: https://binance-docs.github.io/apidocs/spot/en/#repay-with-collateral-user_data -
Options Hash:
(**kwargs)
-
:recvWindow
(Integer
) -- The value cannot be greater than 60000
Parameters:
-
kwargs
(Hash
) -- -
quoteId
(String
) --
def repay_with_collateral(quoteId:, **kwargs) Binance::Utils::Validation.require_param('quoteId', quoteId) @session.sign_request(:post, '/sapi/v1/futures/loan/collateralRepay', params: kwargs.merge( quoteId: quoteId )) end