MrShi
8 天以前 7c93550a244fcc74678344628c229b42438c729f
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
import { ICommonAPIParams } from '../../constant/types';
/**
 * 查询话单列表 请求参数定义
 * @apiName getCloudCallList
 */
export interface IUnionGetCloudCallListParams extends ICommonAPIParams {
    index: number;
    corpId: string;
    endTime: string;
    pageSize: number;
    bizNumber?: string;
    direction: number;
    sessionId?: string;
    startTime: string;
    staffIdList?: string[];
}
/**
 * 查询话单列表 返回结果定义
 * @apiName getCloudCallList
 */
export interface IUnionGetCloudCallListResult {
    code: number;
    cause: string;
    total: number;
    hasMore: boolean;
    callList: string[];
    currentIndex: number;
}
/**
 * 查询话单列表
 * @apiName getCloudCallList
 */
export declare function getCloudCallList$(params: IUnionGetCloudCallListParams): Promise<IUnionGetCloudCallListResult>;
export default getCloudCallList$;