NIMSDK-AOS  9.16.0
QChatGetChannelCategoryBlackWhiteMembersByPageParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
5 
10 
14  @NonNull
15  private final Long serverId;
19  @NonNull
20  private final Long categoryId;
24  @NonNull
25  private final QChatChannelBlackWhiteType type;
29  @NonNull
30  private final Long timeTag;
34  private Integer limit;
35 
43  public QChatGetChannelCategoryBlackWhiteMembersByPageParam(@NonNull Long serverId, @NonNull Long categoryId, @NonNull QChatChannelBlackWhiteType type, @NonNull Long timeTag) {
44  this.serverId = serverId;
45  this.categoryId = categoryId;
46  this.type = type;
47  this.timeTag = timeTag;
48  }
49 
54  public void setLimit(Integer limit) {
55  this.limit = limit;
56  }
57 
62  @NonNull
63  public Long getServerId() {
64  return serverId;
65  }
66 
71  @NonNull
72  public Long getCategoryId() {
73  return categoryId;
74  }
75 
80  @NonNull
82  return type;
83  }
84 
89  @NonNull
90  public Long getTimeTag() {
91  return timeTag;
92  }
93 
98  public Integer getLimit() {
99  return limit;
100  }
101 }
QChatGetChannelCategoryBlackWhiteMembersByPageParam(@NonNull Long serverId, @NonNull Long categoryId, @NonNull QChatChannelBlackWhiteType type, @NonNull Long timeTag)