Class: Telnyx::Models::OAuthIntrospectResponse
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Telnyx::Models::OAuthIntrospectResponse
- Defined in:
- lib/telnyx/models/oauth_introspect_response.rb
Overview
Instance Attribute Summary collapse
-
#active ⇒ Boolean
Whether the token is active.
-
#aud ⇒ String?
Audience.
-
#client_id ⇒ String?
Client identifier.
-
#exp ⇒ Integer?
Expiration timestamp.
-
#iat ⇒ Integer?
Issued at timestamp.
-
#iss ⇒ String?
Issuer.
-
#scope ⇒ String?
Space-separated list of scopes.
Instance Method Summary collapse
- #initialize(active:, aud: nil, client_id: nil, exp: nil, iat: nil, iss: nil, scope: nil) ⇒ Object constructor
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(active:, aud: nil, client_id: nil, exp: nil, iat: nil, iss: nil, scope: nil) ⇒ Object
|
|
# File 'lib/telnyx/models/oauth_introspect_response.rb', line 49
|
Instance Attribute Details
#active ⇒ Boolean
Whether the token is active
11 |
# File 'lib/telnyx/models/oauth_introspect_response.rb', line 11 required :active, Telnyx::Internal::Type::Boolean |
#aud ⇒ String?
Audience
17 |
# File 'lib/telnyx/models/oauth_introspect_response.rb', line 17 optional :aud, String |
#client_id ⇒ String?
Client identifier
23 |
# File 'lib/telnyx/models/oauth_introspect_response.rb', line 23 optional :client_id, String |
#exp ⇒ Integer?
Expiration timestamp
29 |
# File 'lib/telnyx/models/oauth_introspect_response.rb', line 29 optional :exp, Integer |
#iat ⇒ Integer?
Issued at timestamp
35 |
# File 'lib/telnyx/models/oauth_introspect_response.rb', line 35 optional :iat, Integer |
#iss ⇒ String?
Issuer
41 |
# File 'lib/telnyx/models/oauth_introspect_response.rb', line 41 optional :iss, String |
#scope ⇒ String?
Space-separated list of scopes
47 |
# File 'lib/telnyx/models/oauth_introspect_response.rb', line 47 optional :scope, String |