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
16 boolean isChatDisabled();
17
23
30 int sendChatToUser(ZoomVideoSDKUser user, String msgContent);
31
37 int sendChatToAll(String msgContent);
38
45 int deleteChatMessage(String msgId);
46
52 boolean canChatMessageBeDeleted(@NonNull String msgId);
53
61
67}
boolean canChatMessageBeDeleted(@NonNull String msgId)
Determines whether a specific message can be deleted.
int changeChatPrivilege(ZoomVideoSDKChatPrivilegeType privilege)
Sets participant chat privilege when in session.
boolean isChatDisabled()
Determines whether chat is disabled.
boolean isPrivateChatDisabled()
Determines whether private chat is disabled.
int sendChatToAll(String msgContent)
Sends a chat message to all users.
int sendChatToUser(ZoomVideoSDKUser user, String msgContent)
Sends a chat message to a specific user.
ZoomVideoSDKChatPrivilegeType getChatPrivilege()
Gets participant chat privilege when in session.
int deleteChatMessage(String msgId)
Deletes a specific chat message from the Zoom server. This does not delete the message in your user i...
Zoom Video SDK user information.