zhizhi/node_modules/dingtalk-jsapi/api/biz/chat/pickConversation.d.ts

29 lines
884 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.chat.pickConversation
*/
export interface IBizChatPickConversationParams {
/** 企业id */
corpId: string;
/** 是否弹出确认窗口默认为true */
isConfirm: string;
}
/**
* 选群组 返回结果定义
* @apiName biz.chat.pickConversation
*/
export interface IBizChatPickConversationResult {
/** 该cid和服务端开发文档-普通会话消息接口配合使用,而且只能使用一次,之后将失效 */
cid: string;
/** 会话标题 */
title: string;
}
/**
* 选群组
* @description corpid必须是用户所属的企业的corpid
* @apiName biz.chat.pickConversation
* @supportVersion ios: 2.4.2 android: 2.4.2
*/
export declare function pickConversation$(params: IBizChatPickConversationParams): Promise<IBizChatPickConversationResult>;
export default pickConversation$;