Class: Lapis::Yggdrasil::Messaging::TokenResponse Abstract
- Defined in:
- lib/lapis/yggdrasil/messaging/token_response.rb
Overview
This class is abstract.
Type of response that includes access and client tokens.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#access_token ⇒ Uuid
readonly
Unique ID of the authentication session.
-
#client_token ⇒ Uuid
readonly
Unique ID of the client that performed the authentication.
Attributes inherited from Response
Method Summary
Methods inherited from Response
Instance Attribute Details
#access_token ⇒ Uuid (readonly)
Unique ID of the authentication session.
19 20 21 |
# File 'lib/lapis/yggdrasil/messaging/token_response.rb', line 19 def access_token @access_token end |
#client_token ⇒ Uuid (readonly)
Unique ID of the client that performed the authentication.
15 16 17 |
# File 'lib/lapis/yggdrasil/messaging/token_response.rb', line 15 def client_token @client_token end |