Interface ICreateForumThread

interface ICreateForumThread {
    autoArchiveDurationMinutes?: AutoArchiveMinutes;
    channelId: string;
    message: CreateMessageFields;
    name: string;
    tagIds?: string[];
}

Properties

autoArchiveDurationMinutes?: AutoArchiveMinutes

The thread will stop showing in the channel list after auto_archive_duration minutes of inactivity, can be set to: 60, 1440, 4320, 10080

channelId: string

The channel the thread is in, has to be of type forum

The starting message to be created in the thread

name: string

1-100 characters long name for the thread

tagIds?: string[]

Tags to assign to the thread

Generated using TypeDoc