Module: Increase::Models::OAuthApplicationListParams::Status::In

Extended by:
Internal::Type::Enum
Defined in:
lib/increase/models/oauth_application_list_params.rb

Constant Summary collapse

ACTIVE =

The application is active and can be used by your users.

:active
DELETED =

The application is deleted.

:deleted

Class Method Summary collapse

Instance Method Summary collapse

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

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/increase/models/oauth_application_list_params.rb', line 116


Instance Method Details

#initialize(in_: nil) ⇒ Object

Some parameter documentations has been truncated, see Increase::Models::OAuthApplicationListParams::Status for more details.

Parameters:



107
108
109
110
111
112
113
114
115
116
117
118
# File 'lib/increase/models/oauth_application_list_params.rb', line 107

module In
  extend Increase::Internal::Type::Enum

  # The application is active and can be used by your users.
  ACTIVE = :active

  # The application is deleted.
  DELETED = :deleted

  # @!method self.values
  #   @return [Array<Symbol>]
end