Module: Lithic::Models::NonPCICard::Substatus
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/lithic/models/non_pci_card.rb
Overview
Card state substatus values: _ ‘LOST` - The physical card is no longer in the cardholder’s possession due to being lost or never received by the cardholder. _ ‘COMPROMISED` - Card information has been exposed, potentially leading to unauthorized access. This may involve physical card theft, cloning, or online data breaches. _ `DAMAGED` - The physical card is not functioning properly, such as having chip failures or a demagnetized magnetic stripe. _ `END_USER_REQUEST` - The cardholder requested the closure of the card for reasons unrelated to fraud or damage, such as switching to a different product or closing the account. _ `ISSUER_REQUEST` - The issuer closed the card for reasons unrelated to fraud or damage, such as account inactivity, product or policy changes, or technology upgrades. _ `NOT_ACTIVE` - The card hasn’t had any transaction activity for a specified period, applicable to statuses like `PAUSED` or `CLOSED`. _ `SUSPICIOUS_ACTIVITY` - The card has one or more suspicious transactions or activities that require review. This can involve prompting the cardholder to confirm legitimate use or report confirmed fraud. _ `INTERNAL_REVIEW` - The card is temporarily paused pending further internal review. _ `EXPIRED` - The card has expired and has been closed without being reissued. _ `UNDELIVERABLE` - The card cannot be delivered to the cardholder and has been returned. * `OTHER` - The reason for the status does not fall into any of the above categories. A comment can be provided to specify the reason.
Constant Summary collapse
- LOST =
:LOST- COMPROMISED =
:COMPROMISED- DAMAGED =
:DAMAGED- END_USER_REQUEST =
:END_USER_REQUEST- ISSUER_REQUEST =
:ISSUER_REQUEST- NOT_ACTIVE =
:NOT_ACTIVE- SUSPICIOUS_ACTIVITY =
:SUSPICIOUS_ACTIVITY- INTERNAL_REVIEW =
:INTERNAL_REVIEW- EXPIRED =
:EXPIRED- UNDELIVERABLE =
:UNDELIVERABLE- OTHER =
:OTHER
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
.values ⇒ Array<Symbol>
|
|
# File 'lib/lithic/models/non_pci_card.rb', line 497
|