Sha256: 53016f0a438b692308ea38311cd87875a48e0076909543bdf0c0bd74d5ce39ce

Contents?: true

Size: 405 Bytes

Versions: 5

Compression:

Stored size: 405 Bytes

Contents

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    class PayflowUkGateway < PayflowGateway
      self.default_currency = 'GBP'
      self.partner = 'PayPalUk'
      
      def express
        @express ||= PayflowExpressUkGateway.new(@options)
      end
      
      def self.supported_cardtypes
        [:visa, :master, :american_express, :discover, :solo, :switch]
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
activemerchant-1.0.0 lib/active_merchant/billing/gateways/payflow_uk.rb
activemerchant-1.0.1 lib/active_merchant/billing/gateways/payflow_uk.rb
activemerchant-1.0.2 lib/active_merchant/billing/gateways/payflow_uk.rb
activemerchant-1.0.3 lib/active_merchant/billing/gateways/payflow_uk.rb
activemerchant-1.1.0 lib/active_merchant/billing/gateways/payflow_uk.rb