# File lib/active_merchant/billing/gateways/federated_canada.rb, line 47 def capture(money, authorization, options = {}) options[:transactionid] = authorization commit('capture', money, options) end
# File lib/active_merchant/billing/gateways/federated_canada.rb, line 61 def credit(money, authorization, options = {}) deprecated CREDIT_DEPRECATION_MESSAGE refund(money, authorization, options) end
# File lib/active_merchant/billing/gateways/federated_canada.rb, line 29 def purchase(money, creditcard, options = {}) post = {} add_invoice(post, options) add_creditcard(post, creditcard) add_address(post, options) add_customer_data(post, options) commit('sale', money, post) end
Generated with the Darkfish Rdoc Generator 2.