# File lib/active_merchant/billing/gateways/merchant_e_solutions.rb, line 42 def capture(money, transaction_id, options = {}) post ={} post[:transaction_id] = transaction_id commit('S', money, post) end
# File lib/active_merchant/billing/gateways/merchant_e_solutions.rb, line 64 def credit(money, creditcard_or_card_id, options = {}) post = {} add_payment_source(post, creditcard_or_card_id, options) commit('C', money, post) end
# File lib/active_merchant/billing/gateways/merchant_e_solutions.rb, line 34 def purchase(money, creditcard_or_card_id, options = {}) post = {} add_invoice(post, options) add_payment_source(post, creditcard_or_card_id, options) add_address(post, options) commit('D', money, post) end
# File lib/active_merchant/billing/gateways/merchant_e_solutions.rb, line 60 def refund(money, identification, options = {}) commit('U', money, options.merge(:transaction_id => identification)) end
# File lib/active_merchant/billing/gateways/merchant_e_solutions.rb, line 48 def store(creditcard, options = {}) post = {} add_creditcard(post, creditcard, options) commit('T', nil, post) end
Generated with the Darkfish Rdoc Generator 2.