module Boty module Slack class User attr_accessor :id, :name def initialize(info) @id, @name = info["id"], info["name"] end end end end