# File lib/active_merchant/billing/integrations/direc_pay/notification.rb, line 18
          def status
            case params['Flag']
            when 'SUCCESS'
              'Completed'
            when 'PENDING'
              'Pending'
            when 'FAIL'
              'Failed'
            else
              'Error'
            end
          end