Interface EditForumChannelOptions

interface EditForumChannelOptions {
    availableTags?: (Omit<ForumTag, "id"> & {
        id?: string;
    })[];
    defaultForumLayout?: ForumLayoutTypes;
    defaultReactionEmoji?: null | ForumEmoji;
    defaultSortOrder?: SortOrderTypes;
    defaultThreadRateLimitPerUser?: number;
    flags?: number;
    name?: string;
    nsfw?: null | string;
    permissionOverwrites?: null | OverwriteOptions[];
    position?: null | number;
    rateLimitPerUser?: null | number;
    topic?: null | string;
}

Hierarchy (view full)

Properties

availableTags?: (Omit<ForumTag, "id"> & {
    id?: string;
})[]

[Forum] The tags available in the channel. A maximum of 20 can be present.

defaultForumLayout?: ForumLayoutTypes

[Forum] The default forum layout used to display threads.

defaultReactionEmoji?: null | ForumEmoji

[Forum] The default reaction emoji for threads.

defaultSortOrder?: SortOrderTypes

[Forum] The default sort order mode used to sort forum threads.

defaultThreadRateLimitPerUser?: number

[Text, Forum] The default reaction emoji for threads.

flags?: number

[Forum, Forum Thread] The Channel Flags to set on the channel.

name?: string

The name of the channel.

nsfw?: null | string

[Announcement, Text, Voice] If the channel is age gated.

permissionOverwrites?: null | OverwriteOptions[]

Channel or category specific permissions.

position?: null | number

The position of the channel in the channel list.

rateLimitPerUser?: null | number

[Forum, Text, Thread] The seconds between sending messages for users. Between 0 and 21600.

topic?: null | string

[Announcement, Forum, Text, Voice] The topic of the channel. In forum channels, this is the Guidelines section.