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

Body of the Actions actionFailed event

Type declaration

  • actionId: FieldType<number>

    This field shall be set to the ActionID of the action which encountered an error.

    MatterSpecification.v13.Core § 9.14.7.2.1

  • error: FieldType<Actions.ActionError>

    This field shall be set to indicate the reason for non-successful progress of the action.

    MatterSpecification.v13.Core § 9.14.7.2.4

  • 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.2.2

  • newState: FieldType<Actions.ActionState>

    This field shall be set to state that the action is in at the time of generating the event.

    MatterSpecification.v13.Core § 9.14.7.2.3

MatterSpecification.v13.Core § 9.14.7.2