Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
us.zoom.sdk.InMeetingChatMessage Interface Reference

Chat message in zoom meeting. More...

Public Member Functions

ZoomSDKChatMessageType getChatMessageType ()
 Get Chat message type.
 
String getMsgId ()
 Get the message ID.
 
long getSenderUserId ()
 Get the ID of user who sends message.
 
String getSenderDisplayName ()
 Get the screen name of user who sends message.
 
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.
 
long getTime ()
 Get the time when the message is sent.
 
boolean isChatToAll ()
 To check if the message is sent to all users in meeting.
 
boolean isChatToAllPanelist ()
 To check if the message is sent to all panelist in meeting.
 
boolean isChatToWaitingroom ()
 To check if the message is sent to waiting room users.
 
boolean isComment ()
 Determine if the current message is a comment replying to another message.
 
boolean isThread ()
 Determine if the current message is part of a message thread, and can be directly replied to.
 
List< IRichTextStyleItemgetTextStyleItemList ()
 Get the current message’s chat message font style list.
 
String getThreadId ()
 Get the current message’s thread ID.
 
List< SegmentDetailsgetSegmentDetails ()
 Get the current message’s chat message SegmentDetails list.
 

Detailed Description

Chat message in zoom meeting.

Definition at line 8 of file InMeetingChatMessage.java.

Member Function Documentation

◆ getChatMessageType()

ZoomSDKChatMessageType us.zoom.sdk.InMeetingChatMessage.getChatMessageType ( )

Get Chat message type.

Returns
Chat message type.

◆ getContent()

String us.zoom.sdk.InMeetingChatMessage.getContent ( )

Get the message content.

Returns
The message content.

◆ getMsgId()

String us.zoom.sdk.InMeetingChatMessage.getMsgId ( )

Get the message ID.

Returns
Message ID.

◆ getReceiverDisplayName()

String us.zoom.sdk.InMeetingChatMessage.getReceiverDisplayName ( )

Get the screen name of user who receives message.

Returns
The screen name of user who receives message.

◆ getReceiverUserId()

long us.zoom.sdk.InMeetingChatMessage.getReceiverUserId ( )

Get the ID of user who receives message.

Returns
The ID of user who receives message.

◆ getSegmentDetails()

List< SegmentDetails > us.zoom.sdk.InMeetingChatMessage.getSegmentDetails ( )

Get the current message’s chat message SegmentDetails list.

Returns
SegmentDetails list.

◆ getSenderDisplayName()

String us.zoom.sdk.InMeetingChatMessage.getSenderDisplayName ( )

Get the screen name of user who sends message.

Returns
The screen name of user who sends message.

◆ getSenderUserId()

long us.zoom.sdk.InMeetingChatMessage.getSenderUserId ( )

Get the ID of user who sends message.

Returns
The ID of user who sends message.

◆ getTextStyleItemList()

List< IRichTextStyleItem > us.zoom.sdk.InMeetingChatMessage.getTextStyleItemList ( )

Get the current message’s chat message font style list.

Returns
font style item list

◆ getThreadId()

String us.zoom.sdk.InMeetingChatMessage.getThreadId ( )

Get the current message’s thread ID.

Returns
If the function succeeds, the return value is the current message’s thread ID. Otherwise failed, the return value is the string of length zero(0)

◆ getTime()

long us.zoom.sdk.InMeetingChatMessage.getTime ( )

Get the time when the message is sent.

Returns
The time.

◆ isChatToAll()

boolean us.zoom.sdk.InMeetingChatMessage.isChatToAll ( )

To check if the message is sent to all users in meeting.

Returns
true: to all; otherwise not

◆ isChatToAllPanelist()

boolean us.zoom.sdk.InMeetingChatMessage.isChatToAllPanelist ( )

To check if the message is sent to all panelist in meeting.

Returns
true: to all panelist; otherwise not

◆ isChatToWaitingroom()

boolean us.zoom.sdk.InMeetingChatMessage.isChatToWaitingroom ( )

To check if the message is sent to waiting room users.

Returns
true: to waiting room users; otherwise not

◆ isComment()

boolean us.zoom.sdk.InMeetingChatMessage.isComment ( )

Determine if the current message is a comment replying to another message.

Returns
true indicates that the current message is a comment replying to another message. Otherwise the message is a standalone message.

◆ isThread()

boolean us.zoom.sdk.InMeetingChatMessage.isThread ( )

Determine if the current message is part of a message thread, and can be directly replied to.

Returns
true indicates that the current message is part of a message thread. Otherwise false.