# File lib/active_merchant/billing/gateways/quickpay.rb, line 125
      def capture(money, authorization, options = {})
        post = {}

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

        commit(:capture, post)
      end