MrShi
9 天以前 7c93550a244fcc74678344628c229b42438c729f
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
export declare const apiName = "internal.chat.getTopic";
/**
 * 根据话题id获取对用的话题 请求参数定义
 * @apiName internal.chat.getTopic
 */
export interface IInternalChatGetTopicParams {
    /** 话题ID (必传,无topicId时传空字符串) */
    topicId: string;
    /** 源消息ID (无topicId时必传) */
    sourceMessageId?: string;
    /** 源消息发送者ID (无topicId时必传) */
    sourceSenderId?: string;
    /** 表情排序类型,1-时间倒序 2-时间顺序 */
    stickerSortType: any;
    /** 回复排序类型,1-时间倒序 2-时间顺序 */
    replySortType: any;
}
/**
 * 根据话题id获取对用的话题 返回结果定义
 * @apiName internal.chat.getTopic
 */
export interface IInternalChatGetTopicResult {
    topicModel: any;
}
/**
 * 根据话题id获取对用的话题
 * @apiName internal.chat.getTopic
 * @supportVersion ios: 4.6.25 android: 4.6.25
 */
export declare function getTopic$(params: IInternalChatGetTopicParams): Promise<IInternalChatGetTopicResult>;
export default getTopic$;