Module: Increase::Models::IntrafiAccountEnrollmentListParams::Status::In
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/increase/models/intrafi_account_enrollment_list_params.rb
Constant Summary collapse
- PENDING_ENROLLING =
The account is being added to the IntraFi network.
:pending_enrolling- ENROLLED =
The account has been enrolled with IntraFi.
:enrolled- PENDING_UNENROLLING =
The account is being unenrolled from IntraFi’s deposit sweep.
:pending_unenrolling- UNENROLLED =
The account was once enrolled, but is no longer enrolled at IntraFi.
:unenrolled- REQUIRES_ATTENTION =
Something unexpected happened with this account. Contact Increase support.
:requires_attention
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::IntrafiAccountEnrollmentListParams::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/intrafi_account_enrollment_list_params.rb', line 96
|
Instance Method Details
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::IntrafiAccountEnrollmentListParams::Status for more details.
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/increase/models/intrafi_account_enrollment_list_params.rb', line 78 module In extend Increase::Internal::Type::Enum # The account is being added to the IntraFi network. PENDING_ENROLLING = :pending_enrolling # The account has been enrolled with IntraFi. ENROLLED = :enrolled # The account is being unenrolled from IntraFi's deposit sweep. PENDING_UNENROLLING = :pending_unenrolling # The account was once enrolled, but is no longer enrolled at IntraFi. UNENROLLED = :unenrolled # Something unexpected happened with this account. Contact Increase support. REQUIRES_ATTENTION = :requires_attention # @!method self.values # @return [Array<Symbol>] end |