MrShi
9 天以前 c0f0e756e9d61c27e358c798c91042e35711028b
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
export declare const apiName = "internal.bizcard.friendsByCategory";
/**
 * 根据具体分类值获取指定分类好友列表 请求参数定义
 * @apiName internal.bizcard.friendsByCategory
 */
export interface IInternalBizcardFriendsByCategoryParams {
    /** '21001' 或 '设计师' 或 '朋友' */
    categoryValue: string;
    /** 'tag', 'org', 'title' */
    category: string;
    offset: number;
    size: number;
}
/**
 * 根据具体分类值获取指定分类好友列表 返回结果定义
 * @apiName internal.bizcard.friendsByCategory
 */
export interface IInternalBizcardFriendsByCategoryResult {
    data: {
        list: Array<{
            uid: any;
            avatarMediaId: any;
            name: any;
            title: any;
            orgId: any;
            orgName: any;
            address: any;
            orgAuthed: any;
            titleAuthed: any;
            nameAuthed: any;
            roomId: any;
            location: any;
            tags: any;
            remark: any;
            gmtCreate: any;
            nickPinyin: any;
        }>;
        offset: number;
        hasMore: boolean;
    };
}
/**
 * 根据具体分类值获取指定分类好友列表
 * @apiName internal.bizcard.friendsByCategory
 * @supportVersion ios: 4.5.17 android: 4.5.17
 */
export declare function friendsByCategory$(params: IInternalBizcardFriendsByCategoryParams): Promise<IInternalBizcardFriendsByCategoryResult>;
export default friendsByCategory$;