interface ForumTag {
    emoji: null | ForumEmoji;
    id: string;
    moderated: boolean;
    name: string;
}

Properties

Properties

emoji: null | ForumEmoji

The emoji for this tag.

id: string

The ID of this tag.

moderated: boolean

If this tag can only be used by moderators.

name: string

The name of this tag.