NIMSDK-AOS
9.19.0
plugins
qchat
src
main
java
com
netease
nimlib
sdk
qchat
param
QChatGetChannelCategoryBlackWhiteRolesByPageParam.java
浏览该文件的文档.
1
package
com.netease.nimlib.sdk.qchat.param;
2
3
import
androidx.annotation.NonNull;
4
import
com
.
netease
.
nimlib
.
sdk
.
qchat
.
enums
.
QChatChannelBlackWhiteType
;
5
6
/**
7
* "分页查询频道分组黑白名单身份组列表"接口入参
8
*/
9
public
class
QChatGetChannelCategoryBlackWhiteRolesByPageParam
{
10
/**
11
* 服务器id
12
*/
13
@NonNull
14
private
final
Long serverId;
15
/**
16
* 频道分组id
17
*/
18
@NonNull
19
private
final
Long categoryId;
20
/**
21
* 黑白名单类型
22
*/
23
@NonNull
24
private
final
QChatChannelBlackWhiteType
type;
25
/**
26
* 查询时间戳,如果传0表示当前时间
27
*/
28
@NonNull
29
private
final
Long timeTag;
30
/**
31
* 查询数量限制,默认100
32
*/
33
private
Integer limit;
34
/**
35
*
36
* @param serverId 服务器id
37
* @param categoryId 频道分组id
38
* @param type 黑白名单类型
39
* @param timeTag 查询时间戳
40
*/
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
48
/**
49
* 设置查询数量限制
50
* @param limit
51
*/
52
public
void
setLimit
(Integer limit) {
53
this.limit = limit;
54
}
55
56
/**
57
* 获取服务器id
58
* @return
59
*/
60
@NonNull
61
public
Long
getServerId
() {
62
return
serverId;
63
}
64
65
/**
66
* 获取频道分组id
67
* @return
68
*/
69
@NonNull
70
public
Long
getCategoryId
() {
71
return
categoryId;
72
}
73
74
/**
75
* 获取黑白名单类型
76
* @return
77
*/
78
@NonNull
79
public
QChatChannelBlackWhiteType
getType
() {
80
return
type;
81
}
82
83
/**
84
* 获取查询时间戳
85
* @return
86
*/
87
@NonNull
88
public
Long
getTimeTag
() {
89
return
timeTag;
90
}
91
92
/**
93
* 获取查询数量限制
94
* @return
95
*/
96
public
Integer
getLimit
() {
97
return
limit;
98
}
99
}
com.netease.nimlib.sdk.qchat.param.QChatGetChannelCategoryBlackWhiteRolesByPageParam.QChatGetChannelCategoryBlackWhiteRolesByPageParam
QChatGetChannelCategoryBlackWhiteRolesByPageParam(@NonNull Long serverId, @NonNull Long categoryId, @NonNull QChatChannelBlackWhiteType type, @NonNull Long timeTag)
Definition:
QChatGetChannelCategoryBlackWhiteRolesByPageParam.java:41
com.netease.nimlib.sdk
Definition:
RequestCallback.java:1
com.netease.nimlib.sdk.qchat.param.QChatGetChannelCategoryBlackWhiteRolesByPageParam.getTimeTag
Long getTimeTag()
获取查询时间戳
Definition:
QChatGetChannelCategoryBlackWhiteRolesByPageParam.java:88
com.netease
com
com.netease.nimlib.sdk.qchat.param.QChatGetChannelCategoryBlackWhiteRolesByPageParam.getCategoryId
Long getCategoryId()
获取频道分组id
Definition:
QChatGetChannelCategoryBlackWhiteRolesByPageParam.java:70
com.netease.nimlib.sdk.qchat.param.QChatGetChannelCategoryBlackWhiteRolesByPageParam.setLimit
void setLimit(Integer limit)
设置查询数量限制
Definition:
QChatGetChannelCategoryBlackWhiteRolesByPageParam.java:52
com.netease.nimlib.sdk.qchat.param.QChatGetChannelCategoryBlackWhiteRolesByPageParam
"分页查询频道分组黑白名单身份组列表"接口入参
Definition:
QChatGetChannelCategoryBlackWhiteRolesByPageParam.java:9
com.netease.nimlib.sdk.qchat.param.QChatGetChannelCategoryBlackWhiteRolesByPageParam.getType
QChatChannelBlackWhiteType getType()
获取黑白名单类型
Definition:
QChatGetChannelCategoryBlackWhiteRolesByPageParam.java:79
com.netease.nimlib.sdk.qchat.enums
Definition:
QChatPushMsgType.java:1
com.netease.nimlib.sdk.qchat
com.netease.nimlib.sdk.qchat.param.QChatGetChannelCategoryBlackWhiteRolesByPageParam.getServerId
Long getServerId()
获取服务器id
Definition:
QChatGetChannelCategoryBlackWhiteRolesByPageParam.java:61
com.netease.nimlib.sdk.qchat.enums.QChatChannelBlackWhiteType
黑白名单类型
Definition:
QChatChannelBlackWhiteType.java:6
com.netease.nimlib.sdk.qchat.param.QChatGetChannelCategoryBlackWhiteRolesByPageParam.getLimit
Integer getLimit()
获取查询数量限制
Definition:
QChatGetChannelCategoryBlackWhiteRolesByPageParam.java:96
com.netease.nimlib
生成于 2024年 十月 16日 星期三 10:25:06 , 为 NIMSDK-AOS使用
1.8.13