espago/espago

View on GitHub
lib/espago/api_connection/charges_refund_post.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Espago
  class ApiConnection
    class ChargesRefundPost < Api
      def request(params = {})
        @connection.post "charges/#{params[:charge_id]}/refund", params
      end
    end
  end
end