Module: Increase::Models::DigitalCardProfileListParams::Status::In

Extended by:
Internal::Type::Enum
Defined in:
lib/increase/models/digital_card_profile_list_params.rb

Constant Summary collapse

PENDING =

The Card Profile is awaiting review from Increase and/or processing by card networks.

:pending
REJECTED =

There is an issue with the Card Profile preventing it from use.

:rejected
ACTIVE =

The Card Profile can be assigned to Cards.

:active
ARCHIVED =

The Card Profile is no longer in use.

:archived

Class Method Summary collapse

Instance 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/increase/models/digital_card_profile_list_params.rb', line 85

Instance Method Details

#initialize(in_: nil) ⇒ Object

Some parameter documentations has been truncated, see Increase::Models::DigitalCardProfileListParams::Status for more details.

Parameters:



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/increase/models/digital_card_profile_list_params.rb', line 70

module In
  extend Increase::Internal::Type::Enum

  # The Card Profile is awaiting review from Increase and/or processing by card networks.
  PENDING = :pending

  # There is an issue with the Card Profile preventing it from use.
  REJECTED = :rejected

  # The Card Profile can be assigned to Cards.
  ACTIVE = :active

  # The Card Profile is no longer in use.
  ARCHIVED = :archived

  # @!method self.values
  #   @return [Array<Symbol>]
end