MrShi
7 天以前 97158794d69fd2beee1bf27577aa7cadea8d847d
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
export declare const apiName = "internal.customerService.tryUploadRecords";
/**
 * 部署专家完成服务,录音全部结束,尝试上传录音文件 请求参数定义
 * @apiName internal.customerService.tryUploadRecords
 */
export interface IInternalCustomerServiceTryUploadRecordsParams {
    /** 订单ID; */
    orderId: string;
    /** 是否强制上传 */
    force: boolean;
}
/**
 * 部署专家完成服务,录音全部结束,尝试上传录音文件 返回结果定义
 * @apiName internal.customerService.tryUploadRecords
 */
export interface IInternalCustomerServiceTryUploadRecordsResult {
    [key: string]: any;
}
/**
 * 部署专家完成服务,录音全部结束,尝试上传录音文件
 * @apiName internal.customerService.tryUploadRecords
 * @supportVersion ios: 4.3.7 android: 4.3.7
 */
export declare function tryUploadRecords$(params: IInternalCustomerServiceTryUploadRecordsParams): Promise<IInternalCustomerServiceTryUploadRecordsResult>;
export default tryUploadRecords$;