class ChinoRuby::User
Attributes
groups[RW]
insert_date[RW]
is_active[RW]
last_update[RW]
schema_id[RW]
user_attributes[RW]
user_id[RW]
username[RW]
Public Instance Methods
attributes()
click to toggle source
# File lib/chino_ruby/classes.rb, line 610 def attributes instance_values end
attributes=(hash)
click to toggle source
# File lib/chino_ruby/classes.rb, line 600 def attributes=(hash) hash.each do |key, value| if key=="attributes" @user_attributes = value else send("#{key}=", value) end end end