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
| import { ICommonAPIParams } from '../../constant/types';
| /**
| * 拨打单人电话选项 请求参数定义
| * @apiName quickCallList
| */
| export interface IUnionQuickCallListParams extends ICommonAPIParams {
| title: string;
| corpId: string;
| content: string;
| staffId?: string;
| typeList: number[];
| phoneNumber?: string;
| }
| /**
| * 拨打单人电话选项 返回结果定义
| * @apiName quickCallList
| */
| export interface IUnionQuickCallListResult {
| callId: string;
| callType: number;
| callTypeList: number[];
| }
| /**
| * 拨打单人电话选项
| * @apiName quickCallList
| */
| export declare function quickCallList$(params: IUnionQuickCallListParams): Promise<IUnionQuickCallListResult>;
| export default quickCallList$;
|
|