NIMSDK-AOS  9.16.0
QChatGetChannelBlackWhiteRolesByPageParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
6 
14  @NonNull
15  private final Long serverId;
19  @NonNull
20  private final Long channelId;
24  @NonNull
25  private final QChatChannelBlackWhiteType type;
29  @NonNull
30  private final Long timeTag;
34  private Integer limit;
42  public QChatGetChannelBlackWhiteRolesByPageParam(@NonNull Long serverId, @NonNull Long channelId, @NonNull QChatChannelBlackWhiteType type, @NonNull Long timeTag) {
43  this.serverId = serverId;
44  this.channelId = channelId;
45  this.type = type;
46  this.timeTag = timeTag;
47  }
48 
53  public void setLimit(Integer limit) {
54  this.limit = limit;
55  }
56 
61  @NonNull
62  public Long getServerId() {
63  return serverId;
64  }
65 
70  @NonNull
71  public Long getChannelId() {
72  return channelId;
73  }
74 
79  @NonNull
81  return type;
82  }
83 
88  @NonNull
89  public Long getTimeTag() {
90  return timeTag;
91  }
92 
97  public Integer getLimit() {
98  return limit;
99  }
100 }
QChatGetChannelBlackWhiteRolesByPageParam(@NonNull Long serverId, @NonNull Long channelId, @NonNull QChatChannelBlackWhiteType type, @NonNull Long timeTag)