NIMSDK-AOS  9.19.0
QChatQuickCommentParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
5 
6 public class QChatQuickCommentParam {
7  /**
8  * 被评论消息
9  */
10  @NonNull
11  private final QChatMessage commentMessage;
12  /**
13  * 评论类型
14  */
15  private final int type;
16 
17  /**
18  *
19  * @param commentMessage 被评论消息
20  * @param type 评论类型
21  */
22  public QChatQuickCommentParam(@NonNull QChatMessage commentMessage, int type) {
23  this.commentMessage = commentMessage;
24  this.type = type;
25  }
26 
27  /**
28  * 被评论消息
29  * @return
30  */
32  return commentMessage;
33  }
34 
35  /**
36  * 获取评论类型
37  * @return
38  */
39  public int getType() {
40  return type;
41  }
42 }
QChatQuickCommentParam(@NonNull QChatMessage commentMessage, int type)