OBJECT

ChatUISettings

Various user specific settings on how to render chat.

link GraphQL Schema definition

1type ChatUISettings {
2
3# Setting to store the user's preferred way to pause chat when moderating.
4chatPauseSetting: ChatPauseSetting
5
6# Setting for how deleted messages should be displayed for channel broadcaster or
7# moderator.
8deletedMessageDisplaySetting: DeletedMessageDisplaySetting
9
10# Whether emote animations are enabled.
11isEmoteAnimationsEnabled: Boolean
12
13# Whether readable chat colors are enabled.
14isReadableChatColorsEnabled: Boolean
15
16# Whether the emote animations setting callout has been dismissed.
17isEmoteAnimationsSettingCalloutDismissed: Boolean
18
19}