interface APIThreadMember {
    flags: ThreadMemberFlags;
    id?: string;
    join_timestamp: string;
    member?: APIGuildMember;
    user_id?: string;
}

Properties

Member flags combined as a bitfield

id?: string

The id of the thread

This field is omitted on the member sent within each thread in the GUILD_CREATE event

join_timestamp: string

An ISO8601 timestamp for when the member last joined

Additional information about the user

This field is omitted on the member sent within each thread in the GUILD_CREATE event

This field is only present when with_member is set to true when calling List Thread Members or Get Thread Member

user_id?: string

The id of the member

This field is omitted on the member sent within each thread in the GUILD_CREATE event