Interface ChatInstanceNotifications

interface ChatInstanceNotifications {
    addNotification: (notification: NotificationMessage) => void;
    removeAllNotifications: () => void;
    removeNotifications: (groupID: string) => void;
}

Properties

addNotification: (notification: NotificationMessage) => void

Add a system level notification to the list of system notifications.

removeAllNotifications: () => void

Remove all system level notifications from the list of system notifications.

removeNotifications: (groupID: string) => void

Remove a system level notification from the list of system notifications.

MMNEPVFCICPMFPCPTTAAATR