module Binance::Spot::Subaccount

def sub_account_futures_account_summary(futuresType:, **kwargs)

Other tags:
    See: https://binance-docs.github.io/apidocs/spot/en/#get-summary-of-sub-account-39-s-futures-account-v2-for-master-account -

Options Hash: (**kwargs)
  • :recvWindow (Integer) -- The value cannot be greater than 60000
  • :limit (Integer) -- default:10, max:20
  • :page (Integer) -- default:1

Parameters:
  • kwargs (Hash) --
  • futuresType (Integer) -- 1:USDT Margined Futures, 2:COIN Margined Futures
def sub_account_futures_account_summary(futuresType:, **kwargs)
  Binance::Utils::Validation.require_param('futuresType', futuresType)
  @session.sign_request(:get, '/sapi/v2/sub-account/futures/accountSummary', params: kwargs.merge(
    futuresType: futuresType
  ))
end