NIMSDK-AOS  9.16.0
QChatLeaveServerParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
8 public class QChatLeaveServerParam {
9 
13  @NonNull
14  private final Long serverId;
15 
20  public QChatLeaveServerParam(long serverId) {
21  this.serverId = serverId;
22  }
23 
28  @NonNull
29  public Long getServerId() {
30  return serverId;
31  }
32 
33 }