MrShi
8 天以前 1ab34d6347171b10acf78fcd3d6678eac0483bae
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
export declare const apiName = "internal.requestmoney.loadConversations";
/**
 * 批量获取会话的头像和名称 请求参数定义
 * @apiName internal.requestmoney.loadConversations
 */
export interface IInternalRequestmoneyLoadConversationsParams {
    /** 会话id数组 */
    cIds: string[];
}
/**
 * 批量获取会话的头像和名称 返回结果定义
 * @apiName internal.requestmoney.loadConversations
 */
export interface IInternalRequestmoneyLoadConversationsResult {
    conversations: Array<{
        cId: string;
        title: string;
        icon: string;
    }>;
}
/**
 * 批量获取会话的头像和名称
 * @apiName internal.requestmoney.loadConversations
 * @supportVersion ios: 4.5.8 android: 4.5.8
 */
export declare function loadConversations$(params: IInternalRequestmoneyLoadConversationsParams): Promise<IInternalRequestmoneyLoadConversationsResult>;
export default loadConversations$;