Class: Aladtec::Member
- Inherits:
-
Object
- Object
- Aladtec::Member
- Defined in:
- lib/aladtec/member.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(args = {}) ⇒ Member
constructor
A new instance of Member.
Constructor Details
#initialize(args = {}) ⇒ Member
Returns a new instance of Member.
5 6 7 8 |
# File 'lib/aladtec/member.rb', line 5 def initialize(args = {}) @id = args["id"].to_i @name = args["name"] end |
Instance Attribute Details
#id ⇒ Object
Returns the value of attribute id.
3 4 5 |
# File 'lib/aladtec/member.rb', line 3 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
3 4 5 |
# File 'lib/aladtec/member.rb', line 3 def name @name end |