Class: Backlog::Object::DetailUser

Inherits:
User
  • Object
show all
Defined in:
lib/backlog/object.rb

Instance Attribute Summary collapse

Attributes inherited from User

#id, #name

Instance Method Summary collapse

Constructor Details

#initialize(user) ⇒ DetailUser

Returns a new instance of DetailUser.



51
52
53
54
55
# File 'lib/backlog/object.rb', line 51

def initialize(user)
  super(user)
  @lang = user['lang']
  @updated_on = user['updated_on']
end

Instance Attribute Details

#langObject (readonly)

Returns the value of attribute lang.



56
57
58
# File 'lib/backlog/object.rb', line 56

def lang
  @lang
end

#updated_onObject (readonly)

Returns the value of attribute updated_on.



56
57
58
# File 'lib/backlog/object.rb', line 56

def updated_on
  @updated_on
end