class Clever::Types::Token

Attributes

access_token[R]
created[R]
owner[R]
scopes[R]
uid[R]

Public Class Methods

new(attributes = {}, *) click to toggle source
# File lib/clever/types/token.rb, line 12
def initialize(attributes = {}, *)
  @uid          = attributes['id']
  @created      = attributes['created']
  @owner        = attributes['owner']
  @access_token = attributes['access_token']
  @scopes       = attributes['scopes']
end