TlvStateChangedEvent: ObjectSchema<{
    actionId: FieldType<number>;
    invokeId: FieldType<number>;
    newState: FieldType<Actions.ActionState>;
}> = ...

Body of the Actions stateChanged event

Type declaration

  • actionId: FieldType<number>

    This field shall be set to the ActionID of the action which has changed state.

    MatterSpecification.v13.Core § 9.14.7.1.1

  • invokeId: FieldType<number>

    This field shall be set to the InvokeID which was provided to the most recent command referencing this ActionID.

    MatterSpecification.v13.Core § 9.14.7.1.2

  • newState: FieldType<Actions.ActionState>

    This field shall be set to state that the action has changed to.

    MatterSpecification.v13.Core § 9.14.7.1.3

MatterSpecification.v13.Core § 9.14.7.1