interface ClusterDefinition {
    attributes: Readonly<Record<string, Readonly<AttributeDefinition>>>;
    commands: Readonly<Record<string, Readonly<CommandDefinition>>>;
    commandsResponse: Readonly<Record<string, Readonly<CommandDefinition>>>;
    ID: number;
    manufacturerCode?: number;
}

Properties

attributes: Readonly<Record<string, Readonly<AttributeDefinition>>>
commands: Readonly<Record<string, Readonly<CommandDefinition>>>
commandsResponse: Readonly<Record<string, Readonly<CommandDefinition>>>
ID: number
manufacturerCode?: number