@zoom/react-native-videosdk
    Preparing search index...

    Type Alias ZoomVideoSdkChatHelperType

    A class to operate the instant message in session.

    type ZoomVideoSdkChatHelperType = {
        canChatMessageBeDeleted: (msgId: string) => Promise<boolean>;
        changeChatPrivilege: (
            privilege: ZoomVideoSDKChatPrivilegeType,
        ) => Promise<Errors>;
        deleteChatMessage: (msgId: string) => Promise<Errors>;
        sendChatToAll: (message: string) => Promise<Errors>;
        sendChatToUser: (userId: string, message: string) => Promise<Errors>;
    }

    Implemented by

    Index

    Properties

    canChatMessageBeDeleted: (msgId: string) => Promise<boolean>

    Determine if a specific message can be deleted.

    changeChatPrivilege: (
        privilege: ZoomVideoSDKChatPrivilegeType,
    ) => Promise<Errors>

    Change the privilege of the user's ability to send messages.

    deleteChatMessage: (msgId: string) => Promise<Errors>

    Call this method to delete a specific chat message from the Zoom server.

    sendChatToAll: (message: string) => Promise<Errors>

    Call this method to send a chat message to all users.

    sendChatToUser: (userId: string, message: string) => Promise<Errors>

    Call this method to send a chat message to a specific user.