Sha256: 508f45dfae2b150b7522c2b59d0741386d9b1a0b96a22ea02aa9f7404d0d368b

Contents?: true

Size: 634 Bytes

Versions: 2

Compression:

Stored size: 634 Bytes

Contents

require 'active_merchant/billing/gateways/payflow'
require 'active_merchant/billing/gateways/payflow_express_uk'

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    class PayflowUkGateway < PayflowGateway
      self.default_currency = 'GBP'
      self.partner = 'PayPalUk'

      def express
        @express ||= PayflowExpressUkGateway.new(@options)
      end

      self.supported_cardtypes = [:visa, :master, :american_express, :discover]
      self.supported_countries = ['GB']
      self.homepage_url = 'https://www.paypal.com/uk/webapps/mpp/pro'
      self.display_name = 'PayPal Payments Pro (UK)'
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
activemerchant-1.85.0 lib/active_merchant/billing/gateways/payflow_uk.rb
activemerchant-1.84.0 lib/active_merchant/billing/gateways/payflow_uk.rb