聊天室属性批量变更的结果。

interface ChatRoomAttributeMutationResult {
    chatRoomId: string;
    appliedKeys: readonly string[];
    failedKeys: Readonly<Record<string, { code: number; message: string }>>;
}

Properties

chatRoomId: string

聊天室 ID。

appliedKeys: readonly string[]

已成功应用的属性 key 列表。

failedKeys: Readonly<Record<string, { code: number; message: string }>>

设置或删除失败的属性 key 与错误信息的映射。