module Binance::Spot::Subaccount

def sub_account_enable_futures(email:, **kwargs)

Other tags:
    See: https://binance-docs.github.io/apidocs/spot/en/#enable-futures-for-sub-account-for-master-account -

Options Hash: (**kwargs)
  • :recvWindow (Integer) -- The value cannot be greater than 60000

Parameters:
  • kwargs (Hash) --
  • email (String) --
def sub_account_enable_futures(email:, **kwargs)
  Binance::Utils::Validation.require_param('email', email)
  @session.sign_request(:post, '/sapi/v1/sub-account/futures/enable', params: kwargs.merge(
    email: email
  ))
end