NIMSDK-AOS  9.16.0
QChatGetChannelCategoryRolesParam.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 timeTag;
28  private Integer limit;
29 
30 
37  public QChatGetChannelCategoryRolesParam(long serverId, long categoryId, long timeTag) {
38  this.serverId = serverId;
39  this.categoryId = categoryId;
40  this.timeTag = timeTag;
41  }
42 
50  public QChatGetChannelCategoryRolesParam(long serverId, long categoryId, long timeTag, int limit) {
51  this.serverId = serverId;
52  this.categoryId = categoryId;
53  this.timeTag = timeTag;
54  this.limit = limit;
55  }
56 
61  @NonNull
62  public Long getServerId() {
63  return serverId;
64  }
65 
70  @NonNull
71  public Long getCategoryId() {
72  return categoryId;
73  }
74 
79  @NonNull
80  public Long getTimeTag() {
81  return timeTag;
82  }
83 
88  public Integer getLimit() {
89  return limit;
90  }
91 }
QChatGetChannelCategoryRolesParam(long serverId, long categoryId, long timeTag, int limit)