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
export declare const apiName = "internal.chat.getTopicReplys";
/**
 * 获取话题的回复列表 请求参数定义
 * @apiName internal.chat.getTopicReplys
 */
export interface IInternalChatGetTopicReplysParams {
    /** 话题id */
    topicId: any;
    /** 每页大小 */
    pageSize: any;
    /** 最后一条记录的时间 */
    lastCreateAt: any;
    /** 排序类型 */
    sortType: any;
}
/**
 * 获取话题的回复列表 返回结果定义
 * @apiName internal.chat.getTopicReplys
 */
export interface IInternalChatGetTopicReplysResult {
    topicReplyListModel: any;
}
/**
 * 获取话题的回复列表
 * @apiName internal.chat.getTopicReplys
 * @supportVersion ios: 4.6.25 android: 4.6.25
 */
export declare function getTopicReplys$(params: IInternalChatGetTopicReplysParams): Promise<IInternalChatGetTopicReplysResult>;
export default getTopicReplys$;