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