Class: Authlete::Model::Response::AccessToken
- Includes:
- Utility
- Defined in:
- lib/authlete/model/response/access-token.rb
Instance Attribute Summary collapse
-
#accessTokenExpiresAt ⇒ Object
(also: #access_token_expires_at)
Returns the value of attribute accessTokenExpiresAt.
-
#accessTokenHash ⇒ Object
(also: #access_token_hash)
Returns the value of attribute accessTokenHash.
-
#clientId ⇒ Object
(also: #client_id)
Returns the value of attribute clientId.
-
#createdAt ⇒ Object
(also: #created_at)
Returns the value of attribute createdAt.
-
#grantType ⇒ Object
(also: #grant_type)
Returns the value of attribute grantType.
-
#lastRefreshedAt ⇒ Object
(also: #last_refreshed_at)
Returns the value of attribute lastRefreshedAt.
-
#properties ⇒ Object
Returns the value of attribute properties.
-
#refreshTokenExpiresAt ⇒ Object
(also: #refresh_token_expires_at)
Returns the value of attribute refreshTokenExpiresAt.
-
#refreshTokenHash ⇒ Object
(also: #refresh_token_hash)
Returns the value of attribute refreshTokenHash.
-
#scopes ⇒ Object
Returns the value of attribute scopes.
-
#subject ⇒ Object
Returns the value of attribute subject.
Method Summary
Methods included from Utility
#extract_access_token, #get_parsed_array, #to_rack_response_json, #to_rack_response_www_authenticate
Methods inherited from Base
Instance Attribute Details
#accessTokenExpiresAt ⇒ Object Also known as: access_token_expires_at
Returns the value of attribute accessTokenExpiresAt.
44 45 46 |
# File 'lib/authlete/model/response/access-token.rb', line 44 def accessTokenExpiresAt @accessTokenExpiresAt end |
#accessTokenHash ⇒ Object Also known as: access_token_hash
Returns the value of attribute accessTokenHash.
24 25 26 |
# File 'lib/authlete/model/response/access-token.rb', line 24 def accessTokenHash @accessTokenHash end |
#clientId ⇒ Object Also known as: client_id
Returns the value of attribute clientId.
32 33 34 |
# File 'lib/authlete/model/response/access-token.rb', line 32 def clientId @clientId end |
#createdAt ⇒ Object Also known as: created_at
Returns the value of attribute createdAt.
52 53 54 |
# File 'lib/authlete/model/response/access-token.rb', line 52 def createdAt @createdAt end |
#grantType ⇒ Object Also known as: grant_type
Returns the value of attribute grantType.
38 39 40 |
# File 'lib/authlete/model/response/access-token.rb', line 38 def grantType @grantType end |
#lastRefreshedAt ⇒ Object Also known as: last_refreshed_at
Returns the value of attribute lastRefreshedAt.
56 57 58 |
# File 'lib/authlete/model/response/access-token.rb', line 56 def lastRefreshedAt @lastRefreshedAt end |
#properties ⇒ Object
Returns the value of attribute properties.
60 61 62 |
# File 'lib/authlete/model/response/access-token.rb', line 60 def properties @properties end |
#refreshTokenExpiresAt ⇒ Object Also known as: refresh_token_expires_at
Returns the value of attribute refreshTokenExpiresAt.
48 49 50 |
# File 'lib/authlete/model/response/access-token.rb', line 48 def refreshTokenExpiresAt @refreshTokenExpiresAt end |
#refreshTokenHash ⇒ Object Also known as: refresh_token_hash
Returns the value of attribute refreshTokenHash.
28 29 30 |
# File 'lib/authlete/model/response/access-token.rb', line 28 def refreshTokenHash @refreshTokenHash end |
#scopes ⇒ Object
Returns the value of attribute scopes.
42 43 44 |
# File 'lib/authlete/model/response/access-token.rb', line 42 def scopes @scopes end |
#subject ⇒ Object
Returns the value of attribute subject.
36 37 38 |
# File 'lib/authlete/model/response/access-token.rb', line 36 def subject @subject end |