.cache
Type: Collection
.client
Type: Client
.shouldCacheForumTopic
.create(channelId:string
,
options:RESTPostForumTopicBody)
Type: Promise<ForumTopic>
Create a topic in a forum.
.delete(channelId:string
,
forumThreadId:string
)
Type: Promise<void>
Delete a topic in a forum.
.fetchMany(channelId:string
,
options:RESTGetForumTopicsQuery)
Type: Promise<Collection>
Get all topics in a forum.
.lock(channelId:string
,
forumThreadId:string
)
Type: Promise<void>
Lock a topic in a forum.
.pin(channelId:string
,
forumThreadId:string
)
Type: Promise<void>
Pin a topic in a forum.
.unlock(channelId:string
,
forumThreadId:string
)
Type: Promise<void>
Unlock a topic in a forum.
.unpin(channelId:string
,
forumThreadId:string
)
Type: Promise<void>
Unpin a topic in a forum.
.update(channelId:string
,
forumThreadId:string
,
options:RESTPatchForumTopicBody)
Type: Promise<ForumTopic>
Update a topic in a forum.