NIMSDK-AOS  9.16.0
QChatRemoveChannelCategoryRoleParam.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 categoryId;
23  @NonNull
24  private final Long roleId;
25 
32  public QChatRemoveChannelCategoryRoleParam(long serverId, long categoryId, long roleId) {
33  this.serverId = serverId;
34  this.categoryId = categoryId;
35  this.roleId = roleId;
36  }
37 
42  @NonNull
43  public Long getServerId() {
44  return serverId;
45  }
46 
51  @NonNull
52  public Long getCategoryId() {
53  return categoryId;
54  }
55 
60  @NonNull
61  public Long getRoleId() {
62  return roleId;
63  }
64 }