
/**
 * 聊天室
 * - [相关文档](https://dev.yunxin.163.com/docs/interface/即时通讯Web端/NIMSDK-Web/ChatroomInfo.html)
 */
export interface NIMChatroomInfo {
  /** 聊天室ID */
  id: string;
  /** 聊天室名字 */
  name: string;
  /** 聊天室公告 */
  announcement: string;
  /** 直播地址 */
  broadcastUrl: string;
  /** 第三方扩展字段 */
  custom: string;
  /** 创建时间 */
  createTime: number;
  /** 更新时间 */
  updateTime: number;
  /** 创建者账号 */
  creator: string;
  /** 当前在线人数 */
  onlineMemberNum: number;
  /** 是否禁言, 禁言状态下普通成员不能发送消息, 创建者和管理员可以发送消息 */
  mute: boolean;
}
