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