|
Video SDK for MacOS API Reference
|
Chat helper interface. More...
#include <ZMVideoSDKChatHelper.h>
Inherits NSObject.
Instance Methods | |
| (BOOL) | - isChatDisabled |
| Determines whether chat is disabled. | |
| (BOOL) | - isPrivateChatDisabled |
| Determines whether private chat is disabled. | |
| (ZMVideoSDKErrors) | - sendChatToUser:content: |
| Sends a chat message to a specific user. | |
| (ZMVideoSDKErrors) | - sendChatToAll: |
| Sends a chat message to all users. | |
| (BOOL) | - canChatMessageBeDeleted: |
| Determines if a specific message supports deletion. | |
| (ZMVideoSDKErrors) | - deleteChatMessage: |
| Deletes a specific chat message from the Zoom server. | |
| (ZMVideoSDKErrors) | - changeChatPrivilege: |
| Sets participant chat privilege when in session. Only session host or manager can run the function. | |
| (ZMVideoSDKChatPrivilegeType) | - getChatPrivilege |
| Gets participant chat privilege when in session. | |
Chat helper interface.
Definition at line 15 of file ZMVideoSDKChatHelper.h.
| - (BOOL) canChatMessageBeDeleted: | (NSString *) | msgID |
Determines if a specific message supports deletion.
| msgID | The message Id. |
| - (ZMVideoSDKErrors) changeChatPrivilege: | (ZMVideoSDKChatPrivilegeType) | privilege |
Sets participant chat privilege when in session. Only session host or manager can run the function.
| privilege | The participant's chat privilege. |
| - (ZMVideoSDKErrors) deleteChatMessage: | (NSString *) | msgID |
Deletes a specific chat message from the Zoom server.
| msgID | The message Id. |
ZMVideoSDKErrors_Success. Otherwise, this function returns an error. | - (ZMVideoSDKChatPrivilegeType) getChatPrivilege |
Gets participant chat privilege when in session.
References getChatPrivilege.
Referenced by getChatPrivilege.
| - (BOOL) isChatDisabled |
Determines whether chat is disabled.
References isChatDisabled.
Referenced by isChatDisabled.
| - (BOOL) isPrivateChatDisabled |
Determines whether private chat is disabled.
References isPrivateChatDisabled.
Referenced by isPrivateChatDisabled.
| - (ZMVideoSDKErrors) sendChatToAll: | (NSString *) | msgContent |
Sends a chat message to all users.
| msgContent | The content of message. |
| - (ZMVideoSDKErrors) sendChatToUser: | (ZMVideoSDKUser *) | user | |
| content: | (NSString *) | msgContent |
Sends a chat message to a specific user.
| user | The receiver. |
| msgContent | The content of message. |