# File lib/active_merchant/billing/gateways/plugnpay.rb, line 170
      def refund(money, reference, options = {})
        post = PlugnpayPostData.new
        add_amount(post, money, options)
        post[:orderID] = reference
        commit(:refund, post)
      end