Class: Slacks::BotUser
- Inherits:
-
Object
- Object
- Slacks::BotUser
- Defined in:
- lib/slacks/bot_user.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(data) ⇒ BotUser
constructor
A new instance of BotUser.
- #to_s ⇒ Object
Constructor Details
#initialize(data) ⇒ BotUser
Returns a new instance of BotUser.
5 6 7 8 |
# File 'lib/slacks/bot_user.rb', line 5 def initialize(data) @id = data.fetch("id") @name = data.fetch("name") end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
3 4 5 |
# File 'lib/slacks/bot_user.rb', line 3 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
3 4 5 |
# File 'lib/slacks/bot_user.rb', line 3 def name @name end |
Instance Method Details
#to_s ⇒ Object
10 11 12 |
# File 'lib/slacks/bot_user.rb', line 10 def to_s "@#{name}" end |