TIMFriendshipGetPendencyList

功能介绍

获取好友添加请求未决信息列表

好友添加请求未决信息是指好友添加请求未处理的操作。例如,开发者添加对方为好友,对方还没有处理;或者有人添加开发者为好友,开发者还没有处理,称之为好友添加请求未决信息

参数详解

参数名称 参数类型 是否必填 描述
friendshipGetPendencyListParams FriendshipGetPendencyListParams 获取好友添加请求未决信息列表的参数

返回模板

Promise<commonResult<PendencyPage>>

{
    code: TIMResult | TIMErrCode;
    desc?: string | undefined;
    json_param?: PendencyPage | undefined;
    json_params?: PendencyPage | undefined; // 兼容
    user_data?: string | undefined;
}

返回值详解

名称 数值类型 描述
code TIMResultTIMErrCode 返回状态码
desc string | undefined 返回描述
json_param PendencyPage | undefined 根据具具体接口返回
json_params PendencyPage | undefined 兼容的字段,某些情况下会返回这个,根据具体接口返回
user_data string | undefined ImSDK负责透传的用户自定义数据,未做任何处理

代码示例

import TimRender from "im_electron_sdk/dist/renderer";
const timRenderInstance = new TimRender();
import { FriendshipGetPendencyListParams } from "im_electron_sdk/dist/interfaces";
let param:FriendshipGetPendencyListParams={
    params: {
        friendship_get_pendency_list_param_type: 0,
        friendship_get_pendency_list_param_start_seq: 0,
        friendship_get_pendency_list_param_start_time: 0,
        friendship_get_pendency_list_param_limited_size: 0,
    },
    user_data: ""    //选填
}

const {code} = await timRenderInstance.TIMFriendshipGetPendencyList(param);
if(code == 0){
    // 成功
}

results matching ""

    No results matching ""