Module: Increase::Models::AccountListParams::Status::In

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

Constant Summary collapse

CLOSED =

Closed Accounts on which no new activity can occur.

:closed
OPEN =

Open Accounts that are ready to use.

:open

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_list_params.rb', line 149

Instance Method Details

#initialize(in_: nil) ⇒ Object

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

Parameters:



140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/increase/models/account_list_params.rb', line 140

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

  # Closed Accounts on which no new activity can occur.
  CLOSED = :closed

  # Open Accounts that are ready to use.
  OPEN = :open

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