Module: Increase::Models::ExportCreateParams::EntityCsv::Status::In

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

Constant Summary collapse

ACTIVE =

The entity is active.

:active
ARCHIVED =

The entity is archived, and can no longer be used to create accounts.

:archived
DISABLED =

The entity is temporarily disabled and cannot be used for financial activity.

:disabled

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

Instance Method Details

#initialize(in_: ) ⇒ Object

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

Entity statuses to filter by.

Parameters:



399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
# File 'lib/increase/models/export_create_params.rb', line 399

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

  # The entity is active.
  ACTIVE = :active

  # The entity is archived, and can no longer be used to create accounts.
  ARCHIVED = :archived

  # The entity is temporarily disabled and cannot be used for financial activity.
  DISABLED = :disabled

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