Sha256: 2c376ba6c564981243d65d33c0c43b5fc1099149ebc7dcce292089779013a20c
Contents?: true
Size: 663 Bytes
Versions: 73
Compression:
Stored size: 663 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module PayflowLink autoload :Helper, 'active_merchant/billing/integrations/payflow_link/helper.rb' autoload :Notification, 'active_merchant/billing/integrations/payflow_link/notification.rb' mattr_accessor :service_url self.service_url = 'https://payflowlink.paypal.com' def self.notification(post, options = {}) Notification.new(post) end def self.return(query_string, options = {}) ActiveMerchant::Billing::Integrations::Return.new(query_string) end end end end end
Version data entries
73 entries across 73 versions & 8 rubygems