# File lib/active_merchant/billing/integrations/direc_pay.rb, line 27 def self.notification(post, options = {}) Notification.new(post) end
# File lib/active_merchant/billing/integrations/direc_pay.rb, line 35 def self.request_status_update(mid, transaction_id, notification_url) Status.new(mid).update(transaction_id, notification_url) end
# File lib/active_merchant/billing/integrations/direc_pay.rb, line 31 def self.return(query_string, options = {}) Return.new(query_string, options) end
# File lib/active_merchant/billing/integrations/direc_pay.rb, line 15 def self.service_url mode = ActiveMerchant::Billing::Base.integration_mode case mode when :production self.production_url when :test self.test_url else raise StandardError, "Integration mode set to an invalid value: #{mode}" end end
Generated with the Darkfish Rdoc Generator 2.