MrShi
9 天以前 c0f0e756e9d61c27e358c798c91042e35711028b
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
35
export declare const apiName = "biz.chat.sendRichTextToEditor";
/**
 * 发送富文本到会话富文本编辑器 请求参数定义
 * @apiName biz.chat.sendRichTextToEditor
 */
export interface IBizChatSendRichTextToEditorParams {
    /** 会话id */
    cid?: string;
    /** 加密会话id */
    cidEnc?: string;
    /** 回复的内容 */
    payload?: string;
    /** 想要@的人的uid和昵称 {"uid":"nick"} */
    atOpenIds?: {
        [uid: string]: string;
    };
    /** 想要@的人的dingtalkId和昵称,{"dingtalkId":"nick"} */
    atDingTalkIds?: {
        [dingtalkId: string]: string;
    };
}
/**
 * 发送富文本到会话富文本编辑器 返回结果定义
 * @apiName biz.chat.sendRichTextToEditor
 */
export interface IBizChatSendRichTextToEditorResult {
}
/**
 * 发送富文本到会话富文本编辑器
 * @apiName biz.chat.sendRichTextToEditor
 * @supportVersion ios: 4.7.12 android: 4.7.12
 * @author Android: 风沂; iOS: 鱼非; Windows: 仟晨; Mac: 舒绎
 */
export declare function sendRichTextToEditor$(params: IBizChatSendRichTextToEditorParams): Promise<IBizChatSendRichTextToEditorResult>;
export default sendRichTextToEditor$;