Module: Increase::Models::AccountNumberListParams::Status::In
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/increase/models/account_number_list_params.rb,
sig/increase/models/account_number_list_params.rbs
Constant Summary collapse
- ACTIVE =
The account number is active.
:active- DISABLED =
The account number is temporarily disabled.
:disabled- CANCELED =
The account number is permanently disabled.
:canceled
Class Method Summary collapse
Instance Method Summary collapse
- #initialize(in_: nil) ⇒ Object
- #self?.values ⇒ ::Array[Increase::Models::AccountNumberListParams::Status::in_]
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/account_number_list_params.rb', line 183
|
Instance Method Details
#initialize(in_: nil) ⇒ Object
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
# File 'lib/increase/models/account_number_list_params.rb', line 171 module In extend Increase::Internal::Type::Enum # The account number is active. ACTIVE = :active # The account number is temporarily disabled. DISABLED = :disabled # The account number is permanently disabled. CANCELED = :canceled # @!method self.values # @return [Array<Symbol>] end |
#self?.values ⇒ ::Array[Increase::Models::AccountNumberListParams::Status::in_]
177 |
# File 'sig/increase/models/account_number_list_params.rbs', line 177
def self?.values: -> ::Array[Increase::Models::AccountNumberListParams::Status::in_]
|