require 'active_merchant/billing/gateways/payflow_express' module ActiveMerchant #:nodoc: module Billing #:nodoc: class PayflowExpressUkGateway < PayflowExpressGateway self.default_currency = 'GBP' self.partner = 'PayPalUk' self.supported_countries = ['GB'] self.homepage_url = 'https://www.paypal.com/uk/cgi-bin/webscr?cmd=_additional-payment-overview-outside' self.display_name = 'PayPal Express Checkout (UK)' end end end