Module: Lithic::Models::Dispute::Status

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

Overview

Status types:

  • ‘NEW` - New dispute case is opened.

  • ‘PENDING_CUSTOMER` - Lithic is waiting for customer to provide more information.

  • ‘SUBMITTED` - Dispute is submitted to the card network.

  • ‘REPRESENTMENT` - Case has entered second presentment.

  • ‘PREARBITRATION` - Case has entered prearbitration.

  • ‘ARBITRATION` - Case has entered arbitration.

  • ‘CASE_WON` - Case was won and credit will be issued.

  • ‘CASE_CLOSED` - Case was lost or withdrawn.

See Also:

Constant Summary collapse

ARBITRATION =
:ARBITRATION
CASE_CLOSED =
:CASE_CLOSED
CASE_WON =
:CASE_WON
NEW =
:NEW
PENDING_CUSTOMER =
:PENDING_CUSTOMER
PREARBITRATION =
:PREARBITRATION
REPRESENTMENT =
:REPRESENTMENT
SUBMITTED =
:SUBMITTED

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/dispute.rb', line 319