Cluster "elements" are attributes, commands and events that may comprise a cluster.

interface Elements {
    attributes: ElementSet<Attribute>;
    commands: ElementSet<Command>;
    events: ElementSet<Event>;
}

Hierarchy (view full)

Properties

attributes: ElementSet<Attribute>

Attributes supported by the cluster.

commands: ElementSet<Command>

Commands supported by the cluster.

events: ElementSet<Event>

Events supported by the cluster.