NIMSDK-AOS  9.19.0
QChatLeaveServerParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
5 /**
6  * "主动离开服务器"接口入参
7  */
8 public class QChatLeaveServerParam {
9 
10  /**
11  * 服务器Id
12  */
13  @NonNull
14  private final Long serverId;
15 
16  /**
17  *
18  * @param serverId 服务器Id
19  */
20  public QChatLeaveServerParam(long serverId) {
21  this.serverId = serverId;
22  }
23 
24  /**
25  * 获取服务器Id
26  * @return
27  */
28  @NonNull
29  public Long getServerId() {
30  return serverId;
31  }
32 
33 }