SubscriptionResult

[ Interface ]

export interface SubscriptionResult extends TcHmi.IResultObject{
    event?: Event;
    changeType?: ChangeType;
    removedByFilter?: boolean;
}

This interface extends TcHmi.IResultObject.

Properties

Name

Type

Description

error

Errors

Error state of the request

details [ optional ]

any

Optional error details. Content depends on the function used and the error.

event [ Optional ]

Event

The event that has changed

changeType [ Optional ]

ChangeType

How the event has changed

removedByFilter [ Optional ]

boolean

Is true if the event has changed so that it no longer fits the configured filter. No updates will be made for this event unless a future change will make it fit the filter again.

SubscriptionResult 1:

Available from version 1.10