# File lib/active_merchant/billing/gateways/worldpay.rb, line 53
      def refund(money, authorization, options = {})
        response = MultiResponse.new
        response << inquire(authorization, options)
        response << commit('refund', build_refund_request(money, authorization, options)) if response.success?
        response        
      end