Class: Telnyx::Models::OAuthClientUpdateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Telnyx::Models::OAuthClientUpdateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/telnyx/models/oauth_client_update_params.rb
Overview
Defined Under Namespace
Modules: AllowedGrantType
Instance Attribute Summary collapse
-
#allowed_grant_types ⇒ Array<Symbol, Telnyx::Models::OAuthClientUpdateParams::AllowedGrantType>?
List of allowed OAuth grant types.
-
#allowed_scopes ⇒ Array<String>?
List of allowed OAuth scopes.
- #id ⇒ String
-
#logo_uri ⇒ String?
URL of the client logo.
-
#name ⇒ String?
The name of the OAuth client.
-
#policy_uri ⇒ String?
URL of the client’s privacy policy.
-
#redirect_uris ⇒ Array<String>?
List of redirect URIs.
-
#require_pkce ⇒ Boolean?
Whether PKCE (Proof Key for Code Exchange) is required for this client.
-
#tos_uri ⇒ String?
URL of the client’s terms of service.
Attributes included from Internal::Type::RequestParameters
Method Summary
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, #initialize, 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
This class inherits a constructor from Telnyx::Internal::Type::BaseModel
Instance Attribute Details
#allowed_grant_types ⇒ Array<Symbol, Telnyx::Models::OAuthClientUpdateParams::AllowedGrantType>?
List of allowed OAuth grant types
19 20 |
# File 'lib/telnyx/models/oauth_client_update_params.rb', line 19 optional :allowed_grant_types, -> { Telnyx::Internal::Type::ArrayOf[enum: Telnyx::OAuthClientUpdateParams::AllowedGrantType] } |
#allowed_scopes ⇒ Array<String>?
List of allowed OAuth scopes
26 |
# File 'lib/telnyx/models/oauth_client_update_params.rb', line 26 optional :allowed_scopes, Telnyx::Internal::Type::ArrayOf[String] |
#id ⇒ String
13 |
# File 'lib/telnyx/models/oauth_client_update_params.rb', line 13 required :id, String |
#logo_uri ⇒ String?
URL of the client logo
32 |
# File 'lib/telnyx/models/oauth_client_update_params.rb', line 32 optional :logo_uri, String |
#name ⇒ String?
The name of the OAuth client
38 |
# File 'lib/telnyx/models/oauth_client_update_params.rb', line 38 optional :name, String |
#policy_uri ⇒ String?
URL of the client’s privacy policy
44 |
# File 'lib/telnyx/models/oauth_client_update_params.rb', line 44 optional :policy_uri, String |
#redirect_uris ⇒ Array<String>?
List of redirect URIs
50 |
# File 'lib/telnyx/models/oauth_client_update_params.rb', line 50 optional :redirect_uris, Telnyx::Internal::Type::ArrayOf[String] |
#require_pkce ⇒ Boolean?
Whether PKCE (Proof Key for Code Exchange) is required for this client
56 |
# File 'lib/telnyx/models/oauth_client_update_params.rb', line 56 optional :require_pkce, Telnyx::Internal::Type::Boolean |
#tos_uri ⇒ String?
URL of the client’s terms of service
62 |
# File 'lib/telnyx/models/oauth_client_update_params.rb', line 62 optional :tos_uri, String |