# File lib/active_merchant/billing/gateways/beanstream.rb, line 61
      def authorize(money, credit_card, options = {})
        post = {}
        add_amount(post, money)
        add_invoice(post, options)
        add_credit_card(post, credit_card)        
        add_address(post, options)
        add_transaction_type(post, :authorization)
        commit(post)
      end