NIMSDK-AOS
9.19.0
plugins
qchat
src
main
java
com
netease
nimlib
sdk
qchat
result
QChatGetChannelCategoryRolesResult.java
浏览该文件的文档.
1
package
com.netease.nimlib.sdk.qchat.result;
2
3
import
com
.
netease
.
nimlib
.
sdk
.
qchat
.
model
.
QChatChannelCategoryRole
;
4
import
java.io.Serializable;
5
import
java.util.List;
6
7
/**
8
* "查询频道分组身份组"接口结果
9
*/
10
public
class
QChatGetChannelCategoryRolesResult
implements
Serializable {
11
12
/**
13
* 频道身份组列表
14
*/
15
private
final
List<QChatChannelCategoryRole> roleList;
16
17
public
QChatGetChannelCategoryRolesResult
(List<QChatChannelCategoryRole> roleList) {
18
this.roleList = roleList;
19
}
20
21
/**
22
* 获取查询到的频道身份组列表
23
* @return
24
*/
25
public
List<QChatChannelCategoryRole>
getRoleList
() {
26
return
roleList;
27
}
28
29
@Override
30
public
String
toString
() {
31
return
"QChatGetChannelCategoryRolesResult{"
+
32
"roleList="
+ roleList +
33
'}'
;
34
}
35
}
com.netease.nimlib.sdk.qchat.result.QChatGetChannelCategoryRolesResult.getRoleList
List< QChatChannelCategoryRole > getRoleList()
获取查询到的频道身份组列表
Definition:
QChatGetChannelCategoryRolesResult.java:25
com.netease.nimlib.sdk.qchat.result.QChatGetChannelCategoryRolesResult.toString
String toString()
Definition:
QChatGetChannelCategoryRolesResult.java:30
com.netease.nimlib.sdk
Definition:
RequestCallback.java:1
com.netease
com
com.netease.nimlib.sdk.qchat.result.QChatGetChannelCategoryRolesResult
"查询频道分组身份组"接口结果
Definition:
QChatGetChannelCategoryRolesResult.java:10
com.netease.nimlib.sdk.qchat.model.QChatChannelCategoryRole
频道分组身份组
Definition:
QChatChannelCategoryRole.java:12
com.netease.nimlib.sdk.qchat.model
Definition:
QChatPushConfig.java:1
com.netease.nimlib.sdk.qchat
com.netease.nimlib.sdk.qchat.result.QChatGetChannelCategoryRolesResult.QChatGetChannelCategoryRolesResult
QChatGetChannelCategoryRolesResult(List< QChatChannelCategoryRole > roleList)
Definition:
QChatGetChannelCategoryRolesResult.java:17
com.netease.nimlib
生成于 2024年 十月 16日 星期三 10:25:06 , 为 NIMSDK-AOS使用
1.8.13