NIMSDK-AOS
9.19.0
plugins
qchat
src
main
java
com
netease
nimlib
sdk
qchat
param
QChatQuickCommentParam.java
浏览该文件的文档.
1
package
com.netease.nimlib.sdk.qchat.param;
2
3
import
androidx.annotation.NonNull;
4
import
com
.
netease
.
nimlib
.
sdk
.
qchat
.
model
.
QChatMessage
;
5
6
public
class
QChatQuickCommentParam
{
7
/**
8
* 被评论消息
9
*/
10
@NonNull
11
private
final
QChatMessage
commentMessage;
12
/**
13
* 评论类型
14
*/
15
private
final
int
type;
16
17
/**
18
*
19
* @param commentMessage 被评论消息
20
* @param type 评论类型
21
*/
22
public
QChatQuickCommentParam
(@NonNull
QChatMessage
commentMessage,
int
type) {
23
this.commentMessage = commentMessage;
24
this.type = type;
25
}
26
27
/**
28
* 被评论消息
29
* @return
30
*/
31
public
QChatMessage
getCommentMessage
() {
32
return
commentMessage;
33
}
34
35
/**
36
* 获取评论类型
37
* @return
38
*/
39
public
int
getType
() {
40
return
type;
41
}
42
}
com.netease.nimlib.sdk.qchat.param.QChatQuickCommentParam.getType
int getType()
获取评论类型
Definition:
QChatQuickCommentParam.java:39
com.netease.nimlib.sdk
Definition:
RequestCallback.java:1
com.netease
com.netease.nimlib.sdk.qchat.param.QChatQuickCommentParam.QChatQuickCommentParam
QChatQuickCommentParam(@NonNull QChatMessage commentMessage, int type)
Definition:
QChatQuickCommentParam.java:22
com
com.netease.nimlib.sdk.qchat.model
Definition:
QChatPushConfig.java:1
com.netease.nimlib.sdk.qchat
com.netease.nimlib.sdk.qchat.param.QChatQuickCommentParam
Definition:
QChatQuickCommentParam.java:6
com.netease.nimlib.sdk.qchat.param.QChatQuickCommentParam.getCommentMessage
QChatMessage getCommentMessage()
被评论消息
Definition:
QChatQuickCommentParam.java:31
com.netease.nimlib.sdk.qchat.model.QChatMessage
圈组消息
Definition:
QChatMessage.java:11
com.netease.nimlib
生成于 2024年 十月 16日 星期三 10:25:06 , 为 NIMSDK-AOS使用
1.8.13