Sha256: b00574d66d66a33adc53bbafe0ff29fdf9b1547559c64c29f376cf4c11cda3b5
Contents?: true
Size: 660 Bytes
Versions: 12
Compression:
Stored size: 660 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module SagePayForm class Return < ActiveMerchant::Billing::Integrations::Return def initialize(query_string, options) begin @notification = Notification.new(query_string, options) rescue Notification::CryptError => e @message = e.message end end def success? @notification && @notification.complete? end def message @message || @notification.message end end end end end end
Version data entries
12 entries across 12 versions & 3 rubygems