Sha256: 48444d706076946b25eb43961cb4e549b10c5be8a977de238ad510b711c145ca
Contents?: true
Size: 719 Bytes
Versions: 10
Compression:
Stored size: 719 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
10 entries across 10 versions & 1 rubygems