Class: ActiveMerchant::Billing::CardSaveGateway
- Inherits:
-
IridiumGateway
- Object
- Gateway
- IridiumGateway
- ActiveMerchant::Billing::CardSaveGateway
- Defined in:
- lib/active_merchant/billing/gateways/card_save.rb
Constant Summary
Constants inherited from IridiumGateway
IridiumGateway::CURRENCY_CODES
Constants inherited from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::CURRENCIES_WITHOUT_FRACTIONS, Gateway::DEBIT_CARDS
Instance Attribute Summary
Attributes inherited from Gateway
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ CardSaveGateway
constructor
A new instance of CardSaveGateway.
Methods inherited from IridiumGateway
#authorize, #capture, #credit, #purchase, #refund, #void
Methods inherited from Gateway
#card_brand, card_brand, inherited, supports?, #test?
Methods included from CreditCardFormatting
Constructor Details
#initialize(options = {}) ⇒ CardSaveGateway
Returns a new instance of CardSaveGateway.
14 15 16 17 18 |
# File 'lib/active_merchant/billing/gateways/card_save.rb', line 14 def initialize(={}) super @test_url = 'https://gw1.cardsaveonlinepayments.com:4430/' @live_url = 'https://gw1.cardsaveonlinepayments.com:4430/' end |