module Qismo module Objects # Line channel object # class LineChannel < Qismo::Object # @!attribute [r] id # @return [Integer] attribute? :id, Types::Int.optional # @!attribute [r] is_active # @return [TrueClass,FalseClass] attribute? :is_active, Types::Bool.optional # @!attribute [r] badge_url # @return [String] attribute? :badge_url, Types::String.optional # @!attribute [r] name # @return [String] attribute? :name, Types::String.optional # @!attribute [r] use_channel_responder # @return [TrueClass,FalseClass] attribute? :use_channel_responder, Types::Bool.optional end end end