Class: Telnyx::Models::OAuthClientListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Telnyx::Models::OAuthClientListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/telnyx/models/oauth_client_list_params.rb
Overview
Defined Under Namespace
Modules: FilterAllowedGrantTypesContains, FilterClientType
Instance Attribute Summary collapse
-
#filter_allowed_grant_types_contains ⇒ Symbol, ...
Filter by allowed grant type.
-
#filter_client_id ⇒ String?
Filter by client ID.
-
#filter_client_type ⇒ Symbol, ...
Filter by client type.
-
#filter_name ⇒ String?
Filter by exact client name.
-
#filter_name_contains ⇒ String?
Filter by client name containing text.
-
#filter_verified ⇒ Boolean?
Filter by verification status.
-
#page_number ⇒ Integer?
Page number.
-
#page_size ⇒ Integer?
Number of results per page.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
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(filter_allowed_grant_types_contains: nil, filter_client_id: nil, filter_client_type: nil, filter_name: nil, filter_name_contains: nil, filter_verified: nil, page_number: nil, page_size: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 59
|
Instance Attribute Details
#filter_allowed_grant_types_contains ⇒ Symbol, ...
Filter by allowed grant type
14 15 |
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 14 optional :filter_allowed_grant_types_contains, enum: -> { Telnyx::OAuthClientListParams::FilterAllowedGrantTypesContains } |
#filter_client_id ⇒ String?
Filter by client ID
21 |
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 21 optional :filter_client_id, String |
#filter_client_type ⇒ Symbol, ...
Filter by client type
27 |
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 27 optional :filter_client_type, enum: -> { Telnyx::OAuthClientListParams::FilterClientType } |
#filter_name ⇒ String?
Filter by exact client name
33 |
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 33 optional :filter_name, String |
#filter_name_contains ⇒ String?
Filter by client name containing text
39 |
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 39 optional :filter_name_contains, String |
#filter_verified ⇒ Boolean?
Filter by verification status
45 |
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 45 optional :filter_verified, Telnyx::Internal::Type::Boolean |
#page_number ⇒ Integer?
Page number
51 |
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 51 optional :page_number, Integer |
#page_size ⇒ Integer?
Number of results per page
57 |
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 57 optional :page_size, Integer |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 86
|