@espressif/rainmaker-base-cdf
    Preparing search index...

    Interface ESPRMGroupInterface

    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

    Index

    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