更新聊天室信息的参数。

interface UpdateChatRoomInfoParams {
    name?: string;
    description?: string;
    maxMembers?: number;
    chatRoomId: string;
}

Hierarchy (View Summary)

Properties

name?: string

更新后的聊天室名称。未传则不修改。

description?: string

更新后的聊天室描述。未传则不修改。

maxMembers?: number

更新后的最大成员数。未传则不修改。

chatRoomId: string

聊天室 ID。该参数必传。