@twinfinity/permission
    Preparing search index...

    Interface GroupMember

    A user returned from group-membership endpoints. Extends User with the target user's effective permissions on the containing group's management scope, reflecting the post-mutation state after an add/remove.

    interface GroupMember {
        email: string;
        firstName: null | string;
        id: string;
        lastName: null | string;
        permissions: PrincipalPermission[];
        username: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    email: string
    firstName: null | string
    id: string
    lastName: null | string
    permissions: PrincipalPermission[]
    username: string