Input to the ContentControl addBlockChannels command

MatterSpecification.v13.Cluster § 6.13.8.12

interface AddBlockChannelsRequest {
    channels: TypeFromFields<{
        blockChannelIndex: FieldType<null | number>;
        identifier: OptionalFieldType<string>;
        majorNumber: FieldType<number>;
        minorNumber: FieldType<number>;
    }>[];
}

Hierarchy (view full)

Properties

Properties

channels: TypeFromFields<{
    blockChannelIndex: FieldType<null | number>;
    identifier: OptionalFieldType<string>;
    majorNumber: FieldType<number>;
    minorNumber: FieldType<number>;
}>[] = ...

This field indicates a set of channels that shall be blocked when the Content Control feature is activated. This field shall be set to values present in ChannelList attribute in the Channel cluster. The BlockChannelIndex field passed in this command shall be NULL.

MatterSpecification.v13.Cluster § 6.13.8.12.1