聊天室属性更新事件的载荷。

interface ChatRoomAttributesUpdateEventPayload {
    chatRoomId: string;
    attributes: Readonly<Record<string, string>>;
    from?: UserInfo;
}

Properties

chatRoomId: string

聊天室 ID。

attributes: Readonly<Record<string, string>>

更新后的属性键值对。

from?: UserInfo

执行更新操作的用户资料。