Module: Increase::Models::PhysicalCardProfileListParams::Status::In

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

Constant Summary collapse

PENDING_CREATING =

The Card Profile has not yet been processed by Increase.

:pending_creating
PENDING_REVIEWING =

The card profile is awaiting review by Increase.

:pending_reviewing
REJECTED =

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

:rejected
PENDING_SUBMITTING =

The card profile is awaiting submission to the fulfillment provider.

:pending_submitting
ACTIVE =

The Physical Card Profile has been submitted to the fulfillment provider and is ready to use.

:active
ARCHIVED =

The Physical Card Profile has been archived.

: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/physical_card_profile_list_params.rb', line 91

Instance Method Details

#initialize(in_: nil) ⇒ Object

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

Parameters:



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/increase/models/physical_card_profile_list_params.rb', line 70

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

  # The Card Profile has not yet been processed by Increase.
  PENDING_CREATING = :pending_creating

  # The card profile is awaiting review by Increase.
  PENDING_REVIEWING = :pending_reviewing

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

  # The card profile is awaiting submission to the fulfillment provider.
  PENDING_SUBMITTING = :pending_submitting

  # The Physical Card Profile has been submitted to the fulfillment provider and is ready to use.
  ACTIVE = :active

  # The Physical Card Profile has been archived.
  ARCHIVED = :archived

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