ENUM

ChatPauseSetting

ChatPauseSetting represents the possible settings for the user's preferred way to pause chat when moderating.

link GraphQL Schema definition

1enum ChatPauseSetting {
2
3# SCROLL_ONLY is the default behavior and pauses chat every time the users scrolls
4# over the chat list.
5SCROLL_ONLY
6
7# MOUSEOVER pauses chat whenever a user's mouse hovers over the list, unpauses
8# automatically after 5 seconds if no scroll is performed.
9MOUSEOVER
10
11# ALTKEY pauses chat when the user presses the alt key (option for mac users). It
12# unpauses when the key is released.
13ALTKEY
14
15# MOUSEOVER_ALTKEY pauses chat on mouse hover and hitting the alt key.
16MOUSEOVER_ALTKEY
17}