NIMSDK-AOS  9.16.0
QChatDeleteServerRoleParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
9 
13  @NonNull
14  private final Long serverId;
18  @NonNull
19  private final Long roleId;
20 
26  public QChatDeleteServerRoleParam(long serverId, long roleId) {
27  this.serverId = serverId;
28  this.roleId = roleId;
29  }
30 
35  @NonNull
36  public Long getServerId() {
37  return serverId;
38  }
39 
44  @NonNull
45  public Long getRoleId() {
46  return roleId;
47  }
48 }