# File lib/active_merchant/billing/gateways/sallie_mae.rb, line 48 def capture(money, authorization, options = {}) post = PostData.new post[:postonly] = authorization commit(:capture, money, post) end
# File lib/active_merchant/billing/gateways/sallie_mae.rb, line 38 def purchase(money, creditcard, options = {}) post = PostData.new add_invoice(post, options) add_creditcard(post, creditcard) add_address(post, creditcard, options) add_customer_data(post, options) commit(:sale, money, post) end
Generated with the Darkfish Rdoc Generator 2.