NIMSDK-AOS  9.16.0
QChatJoinServerOperationParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
8 abstract class QChatJoinServerOperationParam {
9 
13  @NonNull
14  private final Long requestId;
15 
16  protected QChatJoinServerOperationParam(@NonNull Long requestId) {this.requestId = requestId;}
17 
18 
23  public Long getRequestId() {
24  return requestId;
25  }
26 }