Class: Backlog::Object::DetailUser
Instance Attribute Summary collapse
-
#lang ⇒ Object
readonly
Returns the value of attribute lang.
-
#updated_on ⇒ Object
readonly
Returns the value of attribute updated_on.
Attributes inherited from User
Instance Method Summary collapse
-
#initialize(user) ⇒ DetailUser
constructor
A new instance of DetailUser.
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
#lang ⇒ Object (readonly)
Returns the value of attribute lang.
56 57 58 |
# File 'lib/backlog/object.rb', line 56 def lang @lang end |
#updated_on ⇒ Object (readonly)
Returns the value of attribute updated_on.
56 57 58 |
# File 'lib/backlog/object.rb', line 56 def updated_on @updated_on end |