NIMSDK-AOS  9.16.0
QChatQuickCommentParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
5 
6 public class QChatQuickCommentParam {
10  @NonNull
11  private final QChatMessage commentMessage;
15  private final int type;
16 
22  public QChatQuickCommentParam(@NonNull QChatMessage commentMessage, int type) {
23  this.commentMessage = commentMessage;
24  this.type = type;
25  }
26 
32  return commentMessage;
33  }
34 
39  public int getType() {
40  return type;
41  }
42 }
QChatQuickCommentParam(@NonNull QChatMessage commentMessage, int type)