NIMSDK-AOS  9.16.0
QChatGetChannelCategoryBlackWhiteRolesByPageParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
5 
13  @NonNull
14  private final Long serverId;
18  @NonNull
19  private final Long categoryId;
23  @NonNull
24  private final QChatChannelBlackWhiteType type;
28  @NonNull
29  private final Long timeTag;
33  private Integer limit;
41  public QChatGetChannelCategoryBlackWhiteRolesByPageParam(@NonNull Long serverId, @NonNull Long categoryId, @NonNull QChatChannelBlackWhiteType type, @NonNull Long timeTag) {
42  this.serverId = serverId;
43  this.categoryId = categoryId;
44  this.type = type;
45  this.timeTag = timeTag;
46  }
47 
52  public void setLimit(Integer limit) {
53  this.limit = limit;
54  }
55 
60  @NonNull
61  public Long getServerId() {
62  return serverId;
63  }
64 
69  @NonNull
70  public Long getCategoryId() {
71  return categoryId;
72  }
73 
78  @NonNull
80  return type;
81  }
82 
87  @NonNull
88  public Long getTimeTag() {
89  return timeTag;
90  }
91 
96  public Integer getLimit() {
97  return limit;
98  }
99 }
QChatGetChannelCategoryBlackWhiteRolesByPageParam(@NonNull Long serverId, @NonNull Long categoryId, @NonNull QChatChannelBlackWhiteType type, @NonNull Long timeTag)