rk
5 天以前 fea8e0742ee241a94c5bbd4f452d6ad82cf4dd9c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export declare const apiName = "internal.requestmoney.contactswithUids";
/**
 * 批量获取联系人信息 请求参数定义
 * @apiName internal.requestmoney.contactswithUids
 */
export interface IInternalRequestmoneyContactswithUidsParams {
    [key: string]: any;
}
/**
 * 批量获取联系人信息 返回结果定义
 * @apiName internal.requestmoney.contactswithUids
 */
export interface IInternalRequestmoneyContactswithUidsResult {
    users?: Array<{
        uid: number;
        nick: string;
        avatarURL: string;
    }>;
}
/**
 * 批量获取联系人信息
 * @apiName internal.requestmoney.contactswithUids
 * @supportVersion ios: 4.5.8 android: 4.5.8
 */
export declare function contactswithUids$(params: IInternalRequestmoneyContactswithUidsParams): Promise<IInternalRequestmoneyContactswithUidsResult>;
export default contactswithUids$;