NIMSDK-AOS  9.16.0
QChatAcceptServerApplyParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
8 public class QChatAcceptServerApplyParam extends QChatJoinServerOperationParam{
9 
13  @NonNull
14  private final Long serverId;
18  @NonNull
19  private final String accid;
20 
21 
28  public QChatAcceptServerApplyParam(@NonNull Long serverId, @NonNull String accid, Long requestId) {
29  super(requestId);
30  this.serverId = serverId;
31  this.accid = accid;
32  }
33 
38  @NonNull
39  public Long getServerId() {
40  return serverId;
41  }
42 
47  @NonNull
48  public String getAccid() {
49  return accid;
50  }
51 
56  @Override
57  public Long getRequestId() {
58  return super.getRequestId();
59  }
60 }
QChatAcceptServerApplyParam(@NonNull Long serverId, @NonNull String accid, Long requestId)