Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
InMeetingChatMessage.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import java.util.List;
4
8public interface InMeetingChatMessage {
15
21 String getMsgId();
22
29
30
37
38
45
46
53
54
60 String getContent();
61
62
68 long getTime();
69
70
76 boolean isChatToAll();
77
84
91
97 boolean isComment();
98
104 boolean isThread();
105
111 @Deprecated
112 List<IRichTextStyleItem> getTextStyleItemList();
113
120 String getThreadId();
121
127 List<SegmentDetails> getSegmentDetails();
128}
Enumeration of the type for chat message.
Chat message in zoom meeting.
String getSenderDisplayName()
Get the screen name of user who sends message.
long getSenderUserId()
Get the ID of user who sends message.
boolean isChatToAll()
To check if the message is sent to all users in meeting.
String getMsgId()
Get the message ID.
boolean isThread()
Determine if the current message is part of a message thread, and can be directly replied to.
long getReceiverUserId()
Get the ID of user who receives message.
String getReceiverDisplayName()
Get the screen name of user who receives message.
String getContent()
Get the message content.
boolean isChatToWaitingroom()
To check if the message is sent to waiting room users.
List< IRichTextStyleItem > getTextStyleItemList()
Get the current message’s chat message font style list.
ZoomSDKChatMessageType getChatMessageType()
Get Chat message type.
String getThreadId()
Get the current message’s thread ID.
boolean isComment()
Determine if the current message is a comment replying to another message.
boolean isChatToAllPanelist()
To check if the message is sent to all panelist in meeting.
List< SegmentDetails > getSegmentDetails()
Get the current message’s chat message SegmentDetails list.
long getTime()
Get the time when the message is sent.