Class: Increase::Models::IntrafiAccountEnrollmentListParams::Status
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::IntrafiAccountEnrollmentListParams::Status
- Defined in:
- lib/increase/models/intrafi_account_enrollment_list_params.rb
Defined Under Namespace
Modules: In
Instance Attribute Summary collapse
-
#in_ ⇒ Array<Symbol, Increase::Models::IntrafiAccountEnrollmentListParams::Status::In>?
Filter IntraFi Account Enrollments for those with the specified status or statuses.
Instance Method Summary collapse
-
#initialize(account_id: nil, cursor: nil, idempotency_key: nil, limit: nil, status: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see Increase::Models::IntrafiAccountEnrollmentListParams for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(account_id: nil, cursor: nil, idempotency_key: nil, limit: nil, status: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::IntrafiAccountEnrollmentListParams for more details.
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/increase/models/intrafi_account_enrollment_list_params.rb', line 59 class Status < Increase::Internal::Type::BaseModel # @!attribute in_ # Filter IntraFi Account Enrollments for those with the specified status or # statuses. For GET requests, this should be encoded as a comma-delimited string, # such as `?in=one,two,three`. # # @return [Array<Symbol, Increase::Models::IntrafiAccountEnrollmentListParams::Status::In>, nil] optional :in_, -> { Increase::Internal::Type::ArrayOf[enum: Increase::IntrafiAccountEnrollmentListParams::Status::In] }, api_name: :in # @!method initialize(in_: nil) # Some parameter documentations has been truncated, see # {Increase::Models::IntrafiAccountEnrollmentListParams::Status} for more details. # # @param in_ [Array<Symbol, Increase::Models::IntrafiAccountEnrollmentListParams::Status::In>] Filter IntraFi Account Enrollments for those with the specified status or status 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 end |
Instance Attribute Details
#in_ ⇒ Array<Symbol, Increase::Models::IntrafiAccountEnrollmentListParams::Status::In>?
Filter IntraFi Account Enrollments for those with the specified status or statuses. For GET requests, this should be encoded as a comma-delimited string, such as ‘?in=one,two,three`.
66 67 68 69 70 |
# File 'lib/increase/models/intrafi_account_enrollment_list_params.rb', line 66 optional :in_, -> { Increase::Internal::Type::ArrayOf[enum: Increase::IntrafiAccountEnrollmentListParams::Status::In] }, api_name: :in |