Module: Lithic::Models::TransactionMonitoring::CaseSortOrder

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

Overview

Sort order for listing cases. Defaults to ‘CREATED_DESC` (newest first):

  • ‘CREATED_ASC` - Oldest first

  • ‘CREATED_DESC` - Newest first

  • ‘PRIORITY_DESC` - Highest priority first

  • ‘PRIORITY_ASC` - Lowest priority first

  • ‘STATUS_DESC` - Furthest workflow stage first

  • ‘STATUS_ASC` - Earliest workflow stage first

Constant Summary collapse

CREATED_ASC =
:CREATED_ASC
CREATED_DESC =
:CREATED_DESC
PRIORITY_DESC =
:PRIORITY_DESC
PRIORITY_ASC =
:PRIORITY_ASC
STATUS_DESC =
:STATUS_DESC
STATUS_ASC =
:STATUS_ASC

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/case_sort_order.rb', line 24