Interface ThreadMember

interface ThreadMember {
    flags: number;
    id: string;
    joinTimestamp: Date;
    member?: Member;
    userID: string;
}

Hierarchy (view full)

Properties

flags: number

The flags for this thread member. Used for notifications.

id: string

The ID of the thread this member is for.

joinTimestamp: Date

The time at which this member joined the thread.

member?: Member

The guild member associated with this thread member, if fetched with withMember set to true.

userID: string

The ID of the associated user.