Class: Increase::Models::AccountNumberListParams::ACHDebitStatus
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::AccountNumberListParams::ACHDebitStatus
- Defined in:
- lib/increase/models/account_number_list_params.rb
Defined Under Namespace
Modules: In
Instance Attribute Summary collapse
-
#in_ ⇒ Array<Symbol, Increase::Models::AccountNumberListParams::ACHDebitStatus::In>?
The ACH Debit status to retrieve Account Numbers for.
Instance Method Summary collapse
-
#initialize(account_id: nil, ach_debit_status: nil, created_at: nil, cursor: nil, idempotency_key: nil, limit: nil, status: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see Increase::Models::AccountNumberListParams 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, ach_debit_status: nil, created_at: nil, cursor: nil, idempotency_key: nil, limit: nil, status: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::AccountNumberListParams for more details.
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 100 101 102 103 |
# File 'lib/increase/models/account_number_list_params.rb', line 73 class ACHDebitStatus < Increase::Internal::Type::BaseModel # @!attribute in_ # The ACH Debit status to retrieve Account Numbers for. For GET requests, this # should be encoded as a comma-delimited string, such as `?in=one,two,three`. # # @return [Array<Symbol, Increase::Models::AccountNumberListParams::ACHDebitStatus::In>, nil] optional :in_, -> { Increase::Internal::Type::ArrayOf[enum: Increase::AccountNumberListParams::ACHDebitStatus::In] }, api_name: :in # @!method initialize(in_: nil) # Some parameter documentations has been truncated, see # {Increase::Models::AccountNumberListParams::ACHDebitStatus} for more details. # # @param in_ [Array<Symbol, Increase::Models::AccountNumberListParams::ACHDebitStatus::In>] The ACH Debit status to retrieve Account Numbers for. For GET requests, this sho module In extend Increase::Internal::Type::Enum # ACH Debits are allowed. ALLOWED = :allowed # ACH Debits are blocked. BLOCKED = :blocked # @!method self.values # @return [Array<Symbol>] end end |
Instance Attribute Details
#in_ ⇒ Array<Symbol, Increase::Models::AccountNumberListParams::ACHDebitStatus::In>?
The ACH Debit status to retrieve Account Numbers for. For GET requests, this should be encoded as a comma-delimited string, such as ‘?in=one,two,three`.
79 80 81 82 83 |
# File 'lib/increase/models/account_number_list_params.rb', line 79 optional :in_, -> { Increase::Internal::Type::ArrayOf[enum: Increase::AccountNumberListParams::ACHDebitStatus::In] }, api_name: :in |