SubscriptionResult
[ Interface ]
export interface SubscriptionResult extends TcHmi.IResultObject{
event?: Event;
changeType?: ChangeType;
removedByFilter?: boolean;
}
This interface extends TcHmi.IResultObject.
Properties
Name | Type | Description |
---|---|---|
error | Error state of the request | |
details [ optional ] | Optional error details. Content depends on the function used and the error. | |
event [ Optional ] | The event that has changed | |
changeType [ Optional ] | How the event has changed | |
removedByFilter [ Optional ] | 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. |
Available from version 1.10 |