# frozen_string_literal: true module Qismo # # Room model # # @!attribute channel_id [Integer] # @!attribute contact_id [Integer] # @!attribute is_handled_by_bot [Truelass, FalseClass] # @!attribute is_resolved [Truelass, FalseClass] # @!attribute is_waiting [Truelass, FalseClass] # @!attribute last_comment_sender [String] # @!attribute last_comment_sender_type [String] # @!attribute last_comment_text [String] # @!attribute last_comment_timestamp [String] # @!attribute last_customer_comment_text [String, nil] # @!attribute last_customer_timestamp [String] # @!attribute name [String] # @!attribute room_badge [String] # @!attribute room_id [String] # @!attribute room_type [String] # @!attribute source [String] # @!attribute user_avatar_url [String] # @!attribute user_id [String] # class Room < Base # @!parse # extend Resources::RoomResource extend Resources::RoomResource end end