# File lib/active_merchant/billing/gateways/quickpay.rb, line 83
      def credit(money, identification, options = {})
        post = {}
        
        add_amount(post, money)
        add_reference(post, identification)
        
        commit(:credit, post)
      end