Body of the Messages messageComplete event

MatterSpecification.v13.Cluster § 1.16.8.3

interface MessageCompleteEvent {
    fabricIndex: FabricIndex;
    futureMessagesPreference: null | Messages.FutureMessagePreference;
    messageId: Uint8Array;
    reply?: null | string;
    responseId?: null | number;
}

Hierarchy (view full)

Properties

fabricIndex: FabricIndex
futureMessagesPreference: null | Messages.FutureMessagePreference
messageId: Uint8Array

This field shall indicate the MessageID for the message being confirmed.

MatterSpecification.v13.Cluster § 1.16.8.3.1

reply?: null | string

This field shall indicate a user-provided reply to the message. If there was no reply, or the message did not have the ReplyRequired bit set, this field shall be null.

MatterSpecification.v13.Cluster § 1.16.8.3.3

responseId?: null | number

This field shall indicate the MessageResponseID selected by the user. If there was no response before the Duration of the message has elapsed, this field shall be null.

MatterSpecification.v13.Cluster § 1.16.8.3.2