Sha256: b566eb1bab47ccfc9326e24d6bd955973b4a984534594258a51b5d7b8bcc132c

Contents?: true

Size: 714 Bytes

Versions: 2

Compression:

Stored size: 714 Bytes

Contents

require File.dirname(__FILE__) + '/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

2 entries across 2 versions & 2 rubygems

Version Path
activemerchant-1.45.0 lib/active_merchant/billing/gateways/finansbank.rb
aktivemerchant-2.0.0 lib/active_merchant/billing/gateways/finansbank.rb