class ChinoRuby::LoggedUser

Attributes

access_token[RW]
expires_in[RW]
refresh_token[RW]
scope[RW]
token_type[RW]

Public Instance Methods

attributes() click to toggle source
# File lib/chino_ruby/classes.rb, line 342
def attributes
  instance_values
end
attributes=(hash) click to toggle source
# File lib/chino_ruby/classes.rb, line 336
def attributes=(hash)
  hash.each do |key, value|
    send("#{key}=", value)
  end
end