@archastro/sdk
    Preparing search index...

    Interface ThreadMember

    A user's membership record in a thread, capturing their role and full user profile.

    interface ThreadMember {
        membership_type?: string;
        thread?: string;
        user?: User;
    }
    Index

    Properties

    membership_type?: string

    Role of the member within the thread. One of "owner" (the user who created or was granted ownership) or "member" (a regular participant).

    thread?: string

    ID of the thread this membership belongs to (thr_...).

    user?: User

    Full user object for the member (usr_...). Present when the association is preloaded; null otherwise.