MatterSpecification.v13.Cluster § 1.4.9.14

interface GetSceneMembershipResponse {
    capacity: null | number;
    groupId: GroupId;
    sceneList?: number[];
    status: Status;
}

Hierarchy (view full)

Properties

capacity: null | number

This field shall contain the remaining capacity of the Scene Table of the server (for all groups for the accessing fabric). The following values apply:

• 0 - No further scenes may be added.

• 0 < Capacity < 0xFE - Capacity holds the number of scenes that may be added.

• 0xFE - At least 1 further scene may be added (exact number is unknown).

• null - It is unknown if any further scenes may be added.

MatterSpecification.v13.Cluster § 1.4.9.14.2

groupId: GroupId

This field shall be set to the corresponding field of the received GetSceneMembership command.

MatterSpecification.v13.Cluster § 1.4.9.14.3

sceneList?: number[]

If the status is not SUCCESS then this field shall be omitted, else this field shall contain the identifiers of all the scenes in the Scene Table with the corresponding Group ID.

MatterSpecification.v13.Cluster § 1.4.9.14.4

status: Status

This field shall be set according to the Effect on Receipt section for GetSceneMembership command.

MatterSpecification.v13.Cluster § 1.4.9.14.1