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

        add_amount_without_currency(post, money)
        add_reference(post, identification)
        add_fraud_parameters(post, options)

        commit(:refund, post)
      end