Sha256: c85f393647a141728fc6feeeb812250968361cbca5a6dbe555404a1812ba4fdc
Contents?: true
Size: 590 Bytes
Versions: 28
Compression:
Stored size: 590 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module Paysbuy class Notification < ActiveMerchant::Billing::Integrations::Notification SUCCESS = '00' FAIL = '99' def complete? status == 'Completed' end def item_id params['result'][2..-1] end def status params['result'][0..1] == SUCCESS ? 'Completed' : 'Failed' end def acknowledge true end end end end end end
Version data entries
28 entries across 28 versions & 3 rubygems