TlvViewGroupResponse: ObjectSchema<{
    groupId: FieldType<GroupId>;
    groupName: FieldType<string>;
    status: FieldType<Status>;
}> = ...

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

Type declaration

  • groupId: FieldType<GroupId>

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

    MatterSpecification.v13.Cluster § 1.3.7.8.2

  • groupName: FieldType<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: FieldType<Status>

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

    MatterSpecification.v13.Cluster § 1.3.7.8.1

MatterSpecification.v13.Cluster § 1.3.7.8