module Binance::Spot::Savings

def savings_flexible_user_redemption_quota(productId:, type:, **kwargs)

Other tags:
    See: https://binance-docs.github.io/apidocs/spot/en/#get-left-daily-redemption-quota-of-flexible-product-user_data -

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

Parameters:
  • kwargs (Hash) --
  • type (String) -- "FAST", "NORMAL"
  • productId (String) --
def savings_flexible_user_redemption_quota(productId:, type:, **kwargs)
  Binance::Utils::Validation.require_param('productId', productId)
  Binance::Utils::Validation.require_param('type', type)
  @session.sign_request(:get, '/sapi/v1/lending/daily/userRedemptionQuota', params: kwargs.merge(
    productId: productId,
    type: type
  ))
end