Interface JSONForumThread

interface JSONForumThread {
    bumpedAt: null | Date;
    channelID: string;
    comments: JSONForumThreadComment[];
    content: string;
    createdAt: Date;
    editedTimestamp: null | Date;
    guildID: string;
    id: number;
    isLocked: boolean;
    isPinned: boolean;
    mentions: any;
    name: string;
    owner: undefined | Member | Promise<Member> | User;
    ownerID: string;
}

Hierarchy

Properties

bumpedAt: null | Date

Timestamp (unix epoch time) that the forum thread was bumped at.

channelID: string

Forum channel id

Cached comments.

content: string

Content of the thread

createdAt: Date

When this forum thread was created.

editedTimestamp: null | Date

Timestamp at which this channel was last edited.

guildID: string

Guild/server id

id: number
isLocked: boolean

If true, the thread is locked.

isPinned: boolean

If true, the thread is pinned.

mentions: any

Thread mentions

name: string

Name of the thread

owner: undefined | Member | Promise<Member> | User

Owner of this thread, if cached.

ownerID: string

The ID of the owner of this thread.