Class: ActiveMerchant::Billing::SageVirtualCheckGateway
- Includes:
- SageCore
- Defined in:
- lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb
Overview
:nodoc:
Constant Summary
Constants included from SageCore
ActiveMerchant::Billing::SageCore::TRANSACTIONS
Constants inherited from Gateway
Instance Attribute Summary
Attributes inherited from Gateway
Instance Method Summary collapse
- #credit(money, credit_card, options = {}) ⇒ Object
- #purchase(money, credit_card, options = {}) ⇒ Object
- #void(reference, options = {}) ⇒ Object
Methods included from SageCore
Methods inherited from Gateway
#card_brand, card_brand, inherited, #initialize, supports?, #test?
Methods included from Utils
Methods included from CreditCardFormatting
Methods included from RequiresParameters
Methods included from PostsData
Instance Method Details
#credit(money, credit_card, options = {}) ⇒ Object
24 25 26 27 28 29 30 |
# File 'lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb', line 24 def credit(money, credit_card, = {}) post = {} add_check(post, credit_card) add_check_customer_data(post, ) add_transaction_data(post, money, ) commit(:credit, post) end |
#purchase(money, credit_card, options = {}) ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb', line 10 def purchase(money, credit_card, = {}) post = {} add_check(post, credit_card) add_check_customer_data(post, ) add_transaction_data(post, money, ) commit(:purchase, post) end |
#void(reference, options = {}) ⇒ Object
18 19 20 21 22 |
# File 'lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb', line 18 def void(reference, = {}) post = {} add_reference(post, reference) commit(:void, post) end |