rk
9 天以前 8d8ff48ab58d1a8bd7f2308335e8593e55b91d19
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export declare const apiName = "biz.chat.toConversationByOpenConversationId";
/**
 * 根据开放会话cid(一次性有效的加密cid)跳转到指定会话 请求参数定义
 * @apiName biz.chat.toConversationByOpenConversationId
 */
export interface IBizChatToConversationByOpenConversationIdParams {
    /** 开放会话cid */
    openConversationId: string;
}
/**
 * 根据开放会话cid(一次性有效的加密cid)跳转到指定会话 返回结果定义
 * @apiName biz.chat.toConversationByOpenConversationId
 */
export interface IBizChatToConversationByOpenConversationIdResult {
}
/**
 * 根据开放会话cid(一次性有效的加密cid)跳转到指定会话
 * @apiName biz.chat.toConversationByOpenConversationId
 * @supportVersion ios: 5.1.30 android: 5.1.30 pc: 5.1.33
 * @author Android:允武 iOS:度尽 Mac:北塔 Windows:秋酷
 */
export declare function toConversationByOpenConversationId$(params: IBizChatToConversationByOpenConversationIdParams): Promise<IBizChatToConversationByOpenConversationIdResult>;
export default toConversationByOpenConversationId$;