Module: Increase::Models::AccountNumberListParams::Status::In

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

Constant Summary collapse

ACTIVE =

The account number is active.

:active
DISABLED =

The account number is temporarily disabled.

:disabled
CANCELED =

The account number is permanently disabled.

:canceled

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

Instance Method Details

#initialize(in_: nil) ⇒ Object

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

Parameters:



165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# File 'lib/increase/models/account_number_list_params.rb', line 165

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

  # The account number is active.
  ACTIVE = :active

  # The account number is temporarily disabled.
  DISABLED = :disabled

  # The account number is permanently disabled.
  CANCELED = :canceled

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