Sha256: 84734c13f98984172ec049b0dbafc7da3367298298d2d4c73dc5de6c28d271ff
Contents?: true
Size: 659 Bytes
Versions: 36
Compression:
Stored size: 659 Bytes
Contents
require File.dirname(__FILE__) + '/cc5' module ActiveMerchant #:nodoc: module Billing #:nodoc: class FinansbankGateway < CC5Gateway self.live_url = self.test_url = 'https://www.fbwebpos.com/servlet/cc5ApiServer' # The countries the gateway supports merchants from as 2 digit ISO country codes self.supported_countries = ['US', 'TR'] # The card types supported by the payment gateway self.supported_cardtypes = [:visa, :master] # The homepage URL of the gateway self.homepage_url = 'https://www.fbwebpos.com/' # The name of the gateway self.display_name = 'Finansbank WebPOS' end end end
Version data entries
36 entries across 36 versions & 2 rubygems