# File lib/active_merchant/billing/integrations/chronopay/notification.rb, line 23
          def status
            case params['transaction_type']
            when 'onetime'
              'Completed'
            when 'refund'
              'Refunded'
            when 'chargeback'
              'Reversed'
            else
              'Failed'
            end
          end