# File lib/active_merchant/billing/gateways/usa_epay.rb, line 48
      def capture(money, authorization, options = {})
        post = {
          :refNum => authorization
        }
        
        add_amount(post, money)
        commit(:capture, post)
      end