Module: Lithic::Models::Transfer::Status

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

Overview

Status types:

  • ‘DECLINED` - The transfer was declined.

  • ‘EXPIRED` - The transfer was held in pending for too long and expired.

  • ‘PENDING` - The transfer is pending release from a hold.

  • ‘SETTLED` - The transfer is completed.

  • ‘VOIDED` - The transfer was reversed before it settled.

See Also:

Constant Summary collapse

DECLINED =
:DECLINED
EXPIRED =
:EXPIRED
PENDING =
:PENDING
SETTLED =
:SETTLED
VOIDED =
:VOIDED

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/transfer.rb', line 177