# File lib/active_merchant/billing/gateways/epay.rb, line 83 def capture(money, authorization, options = {}) post = {} add_reference(post, authorization) add_amount_without_currency(post, money) commit(:capture, post) end
# File lib/active_merchant/billing/gateways/epay.rb, line 109 def credit(money, identification, options = {}) deprecated CREDIT_DEPRECATION_MESSAGE refund(money, identification, options) end
# File lib/active_merchant/billing/gateways/epay.rb, line 72 def purchase(money, credit_card_or_reference, options = {}) post = {} add_amount(post, money, options) add_creditcard_or_reference(post, credit_card_or_reference) add_invoice(post, options) add_instant_capture(post, true) commit(:authorize, post) end
Generated with the Darkfish Rdoc Generator 2.