ListResult

[ Interface ]

Version 1.10

export interface ListResult extends TcHmi.IResultObject{
    events?: Event[];
}

Version 1.12

export interface ListResult<TPayload = any, TParams extends Dictionary<any> = Dictionary<any>> extends TcHmi.IResultObject {
    events?: Event<TPayload, TParams>[];
}

This interface extends TcHmi.IResultObject.

Version 1.12

If the API is used in TypeScript code, the TypeScript compiler can be notified of the result type.

Properties

Name

Type

Description

events [ optional ]

Event[]

The list of events returned by the server

ListResult 1:

Available from version 1.10