@triply/triplydb
    Preparing search index...

    Interface GroupMember

    One user's membership of a group.

    interface GroupMember {
        createdAt: string;
        inheritedFrom?: string;
        role: string;
        updatedAt: string;
        user: UserInfo;
    }
    Index
    createdAt: string

    When the user joined the group.

    inheritedFrom?: string

    Present when this membership is inherited from an ancestor group; value is the ancestor's accountName.

    role: string

    What this member may do in the group — see GroupRole.

    updatedAt: string

    When their membership last changed, a role change included.

    user: UserInfo

    The member themselves.