NIMSDK-AOS  9.21.10
QChatJoinServerOperationParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
5 /**
6  * "加入服务器操作
7  */
8 abstract class QChatJoinServerOperationParam {
9 
10  /**
11  * 申请/邀请唯一标识
12  */
13  @NonNull
14  private final Long requestId;
15 
16  protected QChatJoinServerOperationParam(@NonNull Long requestId) {this.requestId = requestId;}
17 
18 
19  /**
20  * 获取申请/邀请唯一标识
21  * @return
22  */
23  public Long getRequestId() {
24  return requestId;
25  }
26 }