Module: Lithic::Models::TransactionMonitoring::ResolutionOutcome

Extended by:
Internal::Type::Enum
Defined in:
lib/lithic/models/transaction_monitoring/resolution_outcome.rb

Overview

Outcome recorded when a case is resolved:

  • ‘CONFIRMED_FRAUD` - The reviewed activity was confirmed to be fraudulent

  • ‘SUSPICIOUS_ACTIVITY` - The activity is suspicious but not confirmed fraud

  • ‘FALSE_POSITIVE` - The activity was legitimate and the alert was a false positive

  • ‘NO_ACTION_REQUIRED` - No further action is required

  • ‘ESCALATED_EXTERNAL` - The case was escalated to an external party

Constant Summary collapse

CONFIRMED_FRAUD =
:CONFIRMED_FRAUD
SUSPICIOUS_ACTIVITY =
:SUSPICIOUS_ACTIVITY
FALSE_POSITIVE =
:FALSE_POSITIVE
NO_ACTION_REQUIRED =
:NO_ACTION_REQUIRED
ESCALATED_EXTERNAL =
:ESCALATED_EXTERNAL

Class Method Summary collapse

Methods included from Internal::Type::Enum

==, ===, coerce, dump, hash, inspect, to_sorbet_type, values

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/lithic/models/transaction_monitoring/resolution_outcome.rb', line 23