Class: Authlete::Model::Request::AuthenticationCallbackRequest
- Defined in:
- lib/authlete/model/request/authentication-callback-request.rb
Instance Attribute Summary collapse
-
#accessToken ⇒ Object
(also: #access_token)
Returns the value of attribute accessToken.
-
#claims ⇒ Object
Returns the value of attribute claims.
-
#claimsLocales ⇒ Object
(also: #claims_locales)
Returns the value of attribute claimsLocales.
-
#clientId ⇒ Object
(also: #client_id)
Returns the value of attribute clientId.
-
#expiresIn ⇒ Object
(also: #expires_in)
Returns the value of attribute expiresIn.
-
#id ⇒ Object
Returns the value of attribute id.
-
#password ⇒ Object
Returns the value of attribute password.
-
#rawTokenResponse ⇒ Object
(also: #raw_token_response)
Returns the value of attribute rawTokenResponse.
-
#refreshToken ⇒ Object
(also: #refresh_token)
Returns the value of attribute refreshToken.
-
#serviceApiKey ⇒ Object
(also: #service_api_key)
Returns the value of attribute serviceApiKey.
-
#sns ⇒ Object
Returns the value of attribute sns.
Class Method Summary collapse
Methods included from Hashable
Instance Attribute Details
#accessToken ⇒ Object Also known as: access_token
Returns the value of attribute accessToken.
43 44 45 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 43 def accessToken @accessToken end |
#claims ⇒ Object
Returns the value of attribute claims.
35 36 37 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 35 def claims @claims end |
#claimsLocales ⇒ Object Also known as: claims_locales
Returns the value of attribute claimsLocales.
37 38 39 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 37 def claimsLocales @claimsLocales end |
#clientId ⇒ Object Also known as: client_id
Returns the value of attribute clientId.
27 28 29 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 27 def clientId @clientId end |
#expiresIn ⇒ Object Also known as: expires_in
Returns the value of attribute expiresIn.
51 52 53 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 51 def expiresIn @expiresIn end |
#id ⇒ Object
Returns the value of attribute id.
31 32 33 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 31 def id @id end |
#password ⇒ Object
Returns the value of attribute password.
33 34 35 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 33 def password @password end |
#rawTokenResponse ⇒ Object Also known as: raw_token_response
Returns the value of attribute rawTokenResponse.
55 56 57 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 55 def rawTokenResponse @rawTokenResponse end |
#refreshToken ⇒ Object Also known as: refresh_token
Returns the value of attribute refreshToken.
47 48 49 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 47 def refreshToken @refreshToken end |
#serviceApiKey ⇒ Object Also known as: service_api_key
Returns the value of attribute serviceApiKey.
23 24 25 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 23 def serviceApiKey @serviceApiKey end |
#sns ⇒ Object
Returns the value of attribute sns.
41 42 43 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 41 def sns @sns end |
Class Method Details
.parse(json) ⇒ Object
93 94 95 |
# File 'lib/authlete/model/request/authentication-callback-request.rb', line 93 def self.parse(json) AuthenticationCallbackRequest.new(JSON.parse(json)) end |