interface GatewayThreadMembersUpdate {
    added_members?: APIThreadMember[];
    guild_id: string;
    id: string;
    member_count: number;
    removed_member_ids?: string[];
}

Properties

added_members?: APIThreadMember[]

The members that were added to the thread

guild_id: string

The id of the guild that the thread is in

id: string

The id of the thread for which members are being synced

member_count: number

The approximate member count of the thread, does not count above 50 even if there are more members

removed_member_ids?: string[]

The ids of the members that were removed from the thread