聊天室属性删除事件的载荷。

interface ChatRoomAttributesRemovedEventPayload {
    chatRoomId: string;
    keyList: readonly string[];
    from?: UserInfo;
}

Properties

chatRoomId: string

聊天室 ID。

keyList: readonly string[]

被删除的属性 key 列表。

from?: UserInfo

执行删除操作的用户资料。