module Binance::Spot::Wallet

def account_snapshot(type:, **kwargs)

Other tags:
    See: https://binance-docs.github.io/apidocs/spot/en/#daily-account-snapshot-user_data -

Options Hash: (**kwargs)
  • :recvWindow (Integer) -- The value cannot be greater than 60000
  • :limit (Integer) -- min 5, max 30, default 5
  • :endTime (Integer) --
  • :startTime (Integer) --

Parameters:
  • kwargs (Hash) --
  • type (String) -- "SPOT", "MARGIN", "FUTURES"
def account_snapshot(type:, **kwargs)
  Binance::Utils::Validation.require_param('type', type)
  @session.sign_request(:get, '/sapi/v1/accountSnapshot', params: kwargs.merge(
    type: type
  ))
end