class OffsitePayments::Integrations::Universal::Return

Public Class Methods

new(query_string, options = {}) click to toggle source
Calls superclass method OffsitePayments::Return::new
# File lib/offsite_payments/integrations/universal.rb, line 183
def initialize(query_string, options = {})
  super
  @notification = Notification.new(query_string, options)
end

Public Instance Methods

message() click to toggle source
# File lib/offsite_payments/integrations/universal.rb, line 192
def message
  @notification.message
end
success?() click to toggle source
# File lib/offsite_payments/integrations/universal.rb, line 188
def success?
  @notification.acknowledge
end