module Admitad::Wrappers::Currencies

Public Instance Methods

currencies(**params) click to toggle source
# File lib/admitad/concerns/wrappers/currencies.rb, line 12
def currencies(**params)
  verifying_token do
    client.currencies(params)
  end
end
currencies_rate(**params) click to toggle source
# File lib/admitad/concerns/wrappers/currencies.rb, line 18
def currencies_rate(**params)
  verifying_token do
    client.currencies_rate(params)
  end
end