# File lib/active_merchant/billing/gateways/quickpay.rb, line 61
      def capture(money, authorization, options = {})
        post = {}
        
        add_reference(post, authorization)
        add_amount_without_currency(post, money)
        
        commit(:capture, post)
      end