zhizhi/node_modules/dingtalk-jsapi/api/biz/conference/createCloudCall.d.ts

30 lines
891 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 办公电话直接拨打 请求参数定义
* @apiName biz.conference.createCloudCall
*/
export interface IBizConferenceCreateCloudCallParams {
corpId: string;
bizNumber: string;
calleeNumber: string;
closePushCallRecord?: boolean;
openCallRecord?: boolean;
hideCalleeNumber?: boolean;
}
/**
* 办公电话直接拨打 返回结果定义
* @apiName biz.conference.createCloudCall
*/
export interface IBizConferenceCreateCloudCallResult {
code: number;
cause: string;
sessionId: string;
}
/**
* 办公电话直接拨打
* @apiName biz.conference.createCloudCall
* @supportVersion ios: 6.0.0 android: 6.0.0 pc: 6.0.9
* @author Android洛洋, iOS度尽, pc远觉
*/
export declare function createCloudCall$(params: IBizConferenceCreateCloudCallParams): Promise<IBizConferenceCreateCloudCallResult>;
export default createCloudCall$;