NIMSDK-AOS 10.4.0-beta
载入中...
搜索中...
未找到
QChatMessageQuickCommentDetail.java
浏览该文件的文档.
1package com.netease.nimlib.sdk.qchat.model;
2
3import java.io.Serializable;
4import java.util.List;
5
6/**
7 * 消息评论详情
8 */
9public interface QChatMessageQuickCommentDetail extends Serializable {
10
11 /**
12 * 获取服务器Id
13 * @return
14 */
16
17 /**
18 * 获取channelId
19 * @return
20 */
22
23 /**
24 * 获取消息服务端Id
25 * @return
26 */
28
29 /**
30 * 获取总评论数
31 * @return
32 */
34
35 /**
36 * 获取消息评论最后一次操作的时间
37 * @return
38 */
40
41 /**
42 * 获取评论详情列表
43 * @return
44 */
45 List<QChatQuickCommentDetail> getDetails();
46
47}
long getLastUpdateTime()
获取消息评论最后一次操作的时间
List< QChatQuickCommentDetail > getDetails()
获取评论详情列表