ENUM

DeletedMessageDisplaySetting

DeletedMessageDisplaySetting represents the possible settings for how deleted messages should be displayed.

link GraphQL Schema definition

1enum DeletedMessageDisplaySetting {
2
3# LEGACY hides deleted messages behind a clickable '' chat line.
4LEGACY
5
6# BRIEF removes all deleted messages and inserts a system message that reports the
7# number of deleted messages.
8BRIEF
9
10# DETAILED the deleted message is readable but strikethrough and grayed out.
11DETAILED
12}