module OffsitePayments::Integrations::WorldPay
Public Class Methods
notification(post, options = {})
click to toggle source
# File lib/offsite_payments/integrations/world_pay.rb, line 19 def self.notification(post, options = {}) Notification.new(post, options) end
return(post, options = {})
click to toggle source
# File lib/offsite_payments/integrations/world_pay.rb, line 23 def self.return(post, options = {}) Return.new(post, options) end
service_url()
click to toggle source
# File lib/offsite_payments/integrations/world_pay.rb, line 8 def self.service_url case OffsitePayments.mode when :production self.production_url when :test self.test_url else raise StandardError, "Integration mode set to an invalid value: #{mode}" end end