# File lib/active_merchant/billing/gateways/stripe.rb, line 64
      def refund(money, identification, options = {})
        post = {}

        post[:amount] = amount(money) if money

        commit("charges/#{CGI.escape(identification)}/refund", post)
      end