NIMSDK-AOS  9.16.0
QChatRejectServerInviteParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
8 public class QChatRejectServerInviteParam extends QChatJoinServerOperationParam{
9 
13  @NonNull
14  private final Long serverId;
18  @NonNull
19  private final String accid;
23  @NonNull
24  private String postscript = "";
25 
32  public QChatRejectServerInviteParam(long serverId, String accid,Long requestId) {
33  super(requestId);
34  this.serverId = serverId;
35  this.accid = accid;
36  }
37 
42  @NonNull
43  public Long getServerId() {
44  return serverId;
45  }
46 
51  @NonNull
52  public String getAccid() {
53  return accid;
54  }
55 
60  @NonNull
61  public String getPostscript() {
62  return postscript;
63  }
64 
69  public void setPostscript(@NonNull String postscript) {
70  this.postscript = postscript;
71  }
72 
77  @Override
78  public Long getRequestId() {
79  return super.getRequestId();
80  }
81 }