# File lib/active_merchant/billing/gateways/worldpay.rb, line 39
      def capture(money, authorization, options = {})
        response = MultiResponse.new
        response << inquire(authorization, options) unless options[:authorization_validated]
        response << commit('capture', build_capture_request(money, authorization, options)) if response.success?
        response
      end