setGroupApplicationRead
功能介绍
标记所有群组申请列表为已读
参数详解
此API无参数
返回模板
V2TimCallback
{
code : number
desc : string
}
返回值详解
名称 | 数值类型 | 描述 |
---|---|---|
code | number | 请求结果错误码 |
desc | string | 请求结果描述符 |
代码示例
import { TencentImSDKPlugin } from 'react-native-tim-js';
// 标记所有群组申请列表为已读
const setGroupApplicationReadRes = await TencentImSDKPlugin.v2TIMManager
.getGroupManager()
.setGroupApplicationRead();
if (setGroupApplicationReadRes.code === 0) {
// 设置成功
}