Class: Telnyx::Models::OAuthClientCreateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Telnyx::Models::OAuthClientCreateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/telnyx/models/oauth_client_create_params.rb
Overview
Defined Under Namespace
Modules: AllowedGrantType, ClientType
Instance Attribute Summary collapse
-
#allowed_grant_types ⇒ Array<Symbol, Telnyx::Models::OAuthClientCreateParams::AllowedGrantType>
List of allowed OAuth grant types.
-
#allowed_scopes ⇒ Array<String>
List of allowed OAuth scopes.
-
#client_type ⇒ Symbol, Telnyx::Models::OAuthClientCreateParams::ClientType
OAuth client type.
-
#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 (required for authorization_code flow).
-
#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
Class 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, #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::OAuthClientCreateParams::AllowedGrantType>
List of allowed OAuth grant types
14 15 |
# File 'lib/telnyx/models/oauth_client_create_params.rb', line 14 required :allowed_grant_types, -> { Telnyx::Internal::Type::ArrayOf[enum: Telnyx::OAuthClientCreateParams::AllowedGrantType] } |
#allowed_scopes ⇒ Array<String>
List of allowed OAuth scopes
21 |
# File 'lib/telnyx/models/oauth_client_create_params.rb', line 21 required :allowed_scopes, Telnyx::Internal::Type::ArrayOf[String] |
#client_type ⇒ Symbol, Telnyx::Models::OAuthClientCreateParams::ClientType
OAuth client type
27 |
# File 'lib/telnyx/models/oauth_client_create_params.rb', line 27 required :client_type, enum: -> { Telnyx::OAuthClientCreateParams::ClientType } |
#logo_uri ⇒ String?
URL of the client logo
39 |
# File 'lib/telnyx/models/oauth_client_create_params.rb', line 39 optional :logo_uri, String |
#name ⇒ String
The name of the OAuth client
33 |
# File 'lib/telnyx/models/oauth_client_create_params.rb', line 33 required :name, String |
#policy_uri ⇒ String?
URL of the client’s privacy policy
45 |
# File 'lib/telnyx/models/oauth_client_create_params.rb', line 45 optional :policy_uri, String |
#redirect_uris ⇒ Array<String>?
List of redirect URIs (required for authorization_code flow)
51 |
# File 'lib/telnyx/models/oauth_client_create_params.rb', line 51 optional :redirect_uris, Telnyx::Internal::Type::ArrayOf[String] |
#require_pkce ⇒ Boolean?
Whether PKCE (Proof Key for Code Exchange) is required for this client
57 |
# File 'lib/telnyx/models/oauth_client_create_params.rb', line 57 optional :require_pkce, Telnyx::Internal::Type::Boolean |
#tos_uri ⇒ String?
URL of the client’s terms of service
63 |
# File 'lib/telnyx/models/oauth_client_create_params.rb', line 63 optional :tos_uri, String |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/telnyx/models/oauth_client_create_params.rb', line 93
|