fog/fog-storm_on_demand

View on GitHub
lib/fog/billing/storm_on_demand/requests/make_payment.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Billing
    class StormOnDemand
      class Real
        def make_payment(options = {})
          request(
            :path => "/Billing/Payment/make",
            :body => Fog::JSON.encode(:params => options)
          )
        end
      end
    end
  end
end