# File lib/active_merchant/billing/gateways/instapay.rb, line 51 def capture(money, authorization, options = {}) post = {} add_amount(post, money) add_reference(post, authorization) commit('ns_quicksale_cc', post) end
# File lib/active_merchant/billing/gateways/instapay.rb, line 40 def purchase(money, creditcard, options = {}) post = {} add_amount(post, money) add_invoice(post, options) add_creditcard(post, creditcard) add_address(post, options) add_customer_data(post, options) commit('ns_quicksale_cc', post) end
Generated with the Darkfish Rdoc Generator 2.