Interface representing a group of nodes.

interface ESPRMGroupInterface {
    customData?: Record<string, any>;
    description?: string;
    fabricId?: string;
    id: string;
    isMatter?: boolean;
    isPrimaryUser?: boolean;
    metadata?: Record<string, any>;
    mutuallyExclusive?: boolean;
    name: string;
    nodeDetails?: ESPRMNodeInterface[];
    nodes?: string[];
    parentGroupId?: string;
    subGroups?: ESPRMGroupInterface[];
    totalNodes?: number;
    type?: string;
}

Implemented by

Properties

customData?: Record<string, any>
description?: string
fabricId?: string
id: string
isMatter?: boolean
isPrimaryUser?: boolean
metadata?: Record<string, any>
mutuallyExclusive?: boolean
name: string
nodeDetails?: ESPRMNodeInterface[]
nodes?: string[]
parentGroupId?: string
subGroups?: ESPRMGroupInterface[]
totalNodes?: number
type?: string