The ViewGroupResponse command is sent by the Groups cluster server in response to a ViewGroup command.

MatterSpecification.v13.Cluster § 1.3.7.8

interface ViewGroupResponse {
    groupId: GroupId;
    groupName: string;
    status: Status;
}

Hierarchy (view full)

Properties

groupId: GroupId = ...

This field is set to the GroupID field of the received ViewGroup command.

MatterSpecification.v13.Cluster § 1.3.7.8.2

groupName: string = ...

If the status is SUCCESS, and group names are supported, this field is set to the group name associated with that group in the Group Table; otherwise it is set to the empty string.

MatterSpecification.v13.Cluster § 1.3.7.8.3

status: Status = ...

This field is according to the Effect on Receipt section of the ViewGroup command.

MatterSpecification.v13.Cluster § 1.3.7.8.1