module Boty module Slack class Channel attr_accessor :id def initialize(id:, info:) @id, @info = id, info end end end end