Method: ActiveMerchant::Billing::MerchantWareVersionFourGateway#initialize
- Defined in:
- lib/active_merchant/billing/gateways/merchant_ware_version_four.rb
#initialize(options = {}) ⇒ MerchantWareVersionFourGateway
Creates a new MerchantWareVersionFourGateway
The gateway requires that a valid login, password, and name be passed in the options
hash.
Options
-
:login
- The MerchantWARE SiteID. -
:password
- The MerchantWARE Key. -
:name
- The MerchantWARE Name.
37 38 39 40 |
# File 'lib/active_merchant/billing/gateways/merchant_ware_version_four.rb', line 37 def initialize( = {}) requires!(, :login, :password, :name) super end |