# File lib/active_merchant/billing/gateways/verifi.rb, line 80 def capture(money, authorization, options = {}) capture_void_or_refund_template(:capture, money, authorization, options) end
# File lib/active_merchant/billing/gateways/verifi.rb, line 88 def credit(money, credit_card_or_authorization, options = {}) if credit_card_or_authorization.is_a?(String) deprecated CREDIT_DEPRECATION_MESSAGE refund(money, credit_card_or_authorization, options) else sale_authorization_or_credit_template(:credit, money, credit_card_or_authorization, options) end end
# File lib/active_merchant/billing/gateways/verifi.rb, line 72 def purchase(money, credit_card, options = {}) sale_authorization_or_credit_template(:purchase, money, credit_card, options) end
Generated with the Darkfish Rdoc Generator 2.