NIMSDK-AOS  9.16.0
QChatGetChannelBlackWhiteMembersByPageParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
6 
11 
15  @NonNull
16  private final Long serverId;
20  @NonNull
21  private final Long channelId;
25  @NonNull
26  private final QChatChannelBlackWhiteType type;
30  @NonNull
31  private final Long timeTag;
35  private Integer limit;
36 
44  public QChatGetChannelBlackWhiteMembersByPageParam(@NonNull Long serverId, @NonNull Long channelId, @NonNull QChatChannelBlackWhiteType type, @NonNull Long timeTag) {
45  this.serverId = serverId;
46  this.channelId = channelId;
47  this.type = type;
48  this.timeTag = timeTag;
49  }
50 
55  public void setLimit(Integer limit) {
56  this.limit = limit;
57  }
58 
63  @NonNull
64  public Long getServerId() {
65  return serverId;
66  }
67 
72  @NonNull
73  public Long getChannelId() {
74  return channelId;
75  }
76 
81  @NonNull
83  return type;
84  }
85 
90  @NonNull
91  public Long getTimeTag() {
92  return timeTag;
93  }
94 
99  public Integer getLimit() {
100  return limit;
101  }
102 }
QChatGetChannelBlackWhiteMembersByPageParam(@NonNull Long serverId, @NonNull Long channelId, @NonNull QChatChannelBlackWhiteType type, @NonNull Long timeTag)