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