| 
6
7
8
9
10
11
12
13
14
15
16 | # File 'lib/binance/api/margin/account.rb', line 6
def transfer!(asset: nil, amount: nil, type: nil, recvWindow: nil, api_key: nil, api_secret_key: nil)
  timestamp = Configuration.timestamp
  params = {
    asset: asset, amount: amount, type: type, recvWindow: recvWindow, timestamp: timestamp,
  }.delete_if { |_, value| value.nil? }
  ensure_required_create_keys!(params: params)
  path = "/sapi/v1/margin/transfer"
  Request.send!(api_key_type: :trading, method: :post, path: path,
                params: params, security_type: :margin, tld: Configuration.tld,
                api_key: api_key, api_secret_key: api_secret_key)
end |