NIMSDK-AOS
9.19.0
plugins
qchat
src
main
java
com
netease
nimlib
sdk
qchat
param
QChatUpdateUserPushConfigParam.java
浏览该文件的文档.
1
package
com.netease.nimlib.sdk.qchat.param;
2
3
import
androidx.annotation.NonNull;
4
import
com
.
netease
.
nimlib
.
sdk
.
qchat
.
enums
.
QChatPushMsgType
;
5
6
/**
7
* "更新用户推送配置"接口入参
8
*/
9
public
abstract
class
QChatUpdateUserPushConfigParam
{
10
11
/**
12
* 推送消息类型选项
13
*/
14
@NonNull
15
protected
final
QChatPushMsgType
pushMsgType
;
16
17
/**
18
* @param pushMsgType 推送消息类型选项
19
*/
20
public
QChatUpdateUserPushConfigParam
(@NonNull
QChatPushMsgType
pushMsgType) {
21
this.pushMsgType =
pushMsgType
;
22
}
23
24
/**
25
* 获取推送消息类型选项
26
* @return
27
*/
28
@NonNull
29
public
QChatPushMsgType
getPushMsgType
() {
30
return
pushMsgType
;
31
}
32
}
com.netease.nimlib.sdk.qchat.enums.QChatPushMsgType
推送消息类型选项 低等级消息:普通消息等(没有具体目标、没有@意愿) 中等级消息: @所有人等(没有具体目...
Definition:
QChatPushMsgType.java:7
com.netease.nimlib.sdk
Definition:
RequestCallback.java:1
com.netease
com.netease.nimlib.sdk.qchat.param.QChatUpdateUserPushConfigParam.getPushMsgType
QChatPushMsgType getPushMsgType()
获取推送消息类型选项
Definition:
QChatUpdateUserPushConfigParam.java:29
com
com.netease.nimlib.sdk.qchat.enums
Definition:
QChatPushMsgType.java:1
com.netease.nimlib.sdk.qchat
com.netease.nimlib.sdk.qchat.param.QChatUpdateUserPushConfigParam
"更新用户推送配置"接口入参
Definition:
QChatUpdateUserPushConfigParam.java:9
com.netease.nimlib.sdk.qchat.param.QChatUpdateUserPushConfigParam.QChatUpdateUserPushConfigParam
QChatUpdateUserPushConfigParam(@NonNull QChatPushMsgType pushMsgType)
Definition:
QChatUpdateUserPushConfigParam.java:20
com.netease.nimlib.sdk.qchat.param.QChatUpdateUserPushConfigParam.pushMsgType
final QChatPushMsgType pushMsgType
推送消息类型选项
Definition:
QChatUpdateUserPushConfigParam.java:15
com.netease.nimlib
生成于 2024年 十月 16日 星期三 10:25:06 , 为 NIMSDK-AOS使用
1.8.13