Module: Increase::Models::EntityListParams::Status::In
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/increase/models/entity_list_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
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::EntityListParams::Status for more details.
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
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/entity_list_params.rb', line 129
|
Instance Method Details
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::EntityListParams::Status for more details.
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/increase/models/entity_list_params.rb', line 117 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 |