module OffsitePayments::Integrations::HiTrust

Constants

LIVE_URL
TEST_URL

Public Class Methods

notification(post, options = {}) click to toggle source
# File lib/offsite_payments/integrations/hi_trust.rb, line 11
def self.notification(post, options = {})
  Notification.new(post)
end
return(query_string, options = {}) click to toggle source
# File lib/offsite_payments/integrations/hi_trust.rb, line 15
def self.return(query_string, options = {})
  Return.new(query_string)
end
service_url() click to toggle source
# File lib/offsite_payments/integrations/hi_trust.rb, line 7
def self.service_url
  OffsitePayments.mode == :test ? TEST_URL : LIVE_URL
end