Sha256: 0f2a0b2f57ecf1f4dc192d9129d7c6faa962be24cabf107c95fc8093f6dc9cd4
Contents?: true
Size: 720 Bytes
Versions: 17
Compression:
Stored size: 720 Bytes
Contents
require 'active_merchant/billing/gateways/cc5' module ActiveMerchant #:nodoc: module Billing #:nodoc: class FinansbankGateway < CC5Gateway self.live_url = 'https://www.fbwebpos.com/servlet/cc5ApiServer' self.test_url = 'https://entegrasyon.asseco-see.com.tr/fim/api' # 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
17 entries across 17 versions & 2 rubygems