Class: Telnyx::Models::OAuthClientListParams

Inherits:
Internal::Type::BaseModel show all
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

Attributes included from Internal::Type::RequestParameters

#request_options

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Internal::Type::RequestParameters::Converter

dump_request

Methods included from Internal::Type::RequestParameters

included

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

Parameters:

  • filter_allowed_grant_types_contains (Symbol, Telnyx::Models::OAuthClientListParams::FilterAllowedGrantTypesContains) (defaults to: nil)

    Filter by allowed grant type

  • filter_client_id (String) (defaults to: nil)

    Filter by client ID

  • filter_client_type (Symbol, Telnyx::Models::OAuthClientListParams::FilterClientType) (defaults to: nil)

    Filter by client type

  • filter_name (String) (defaults to: nil)

    Filter by exact client name

  • filter_name_contains (String) (defaults to: nil)

    Filter by client name containing text

  • filter_verified (Boolean) (defaults to: nil)

    Filter by verification status

  • page_number (Integer) (defaults to: nil)

    Page number

  • page_size (Integer) (defaults to: nil)

    Number of results per page

  • request_options (Telnyx::RequestOptions, Hash{Symbol=>Object}) (defaults to: {})


# File 'lib/telnyx/models/oauth_client_list_params.rb', line 59

Instance Attribute Details

#filter_allowed_grant_types_containsSymbol, ...

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_idString?

Filter by client ID

Returns:

  • (String, nil)


21
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 21

optional :filter_client_id, String

#filter_client_typeSymbol, ...

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_nameString?

Filter by exact client name

Returns:

  • (String, nil)


33
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 33

optional :filter_name, String

#filter_name_containsString?

Filter by client name containing text

Returns:

  • (String, nil)


39
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 39

optional :filter_name_contains, String

#filter_verifiedBoolean?

Filter by verification status

Returns:

  • (Boolean, nil)


45
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 45

optional :filter_verified, Telnyx::Internal::Type::Boolean

#page_numberInteger?

Page number

Returns:

  • (Integer, nil)


51
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 51

optional :page_number, Integer

#page_sizeInteger?

Number of results per page

Returns:

  • (Integer, nil)


57
# File 'lib/telnyx/models/oauth_client_list_params.rb', line 57

optional :page_size, Integer

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/telnyx/models/oauth_client_list_params.rb', line 86