Video SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKChatHelper.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import androidx.annotation.NonNull;
4
10public interface ZoomVideoSDKChatHelper {
11
17 boolean isChatDisabled();
18
25
33 int sendChatToUser(ZoomVideoSDKUser user, String msgContent);
34
41 int sendChatToAll(String msgContent);
42
50 int deleteChatMessage(String msgId);
51
58 boolean canChatMessageBeDeleted(@NonNull String msgId);
59
68
74}
boolean canChatMessageBeDeleted(@NonNull String msgId)
Determine if a specific message can be deleted.
int changeChatPrivilege(ZoomVideoSDKChatPrivilegeType privilege)
Set participant Chat Privilege when in session Note: Only session host/manager can run the function.
boolean isChatDisabled()
Determine whether chat is disabled.
boolean isPrivateChatDisabled()
Determine whether private chat is disabled.
int sendChatToAll(String msgContent)
Call this method to send a chat message to all users.
int sendChatToUser(ZoomVideoSDKUser user, String msgContent)
Call this method to send a chat message to a specific user.
ZoomVideoSDKChatPrivilegeType getChatPrivilege()
get participant Chat Priviledge when in session
int deleteChatMessage(String msgId)
Call this method to delete a specific chat message from the Zoom server. This does not delete the mes...
Zoom Video SDK user information.