TaskSearchResult Data Type
name | data type | description |
---|---|---|
Properties inherited from SearchResult |
||
count | number | The total number of results for the query. |
offset | number | The current offset used in the query. |
limit | number | The maximum number of results for the query. |
sortParameter | TaskSearchParameter | The parameter the results are sorted by. |
sortOrder | SortOrder | The order the results are sorted by. |
results | array of object | The results of the query. |
Example
{ "count" : 10, "offset" : 0, "limit" : 50, "sortParameter" : "task-id", "sortOrder" : "DESCENDING", "results" : { "taskID" : 1234, "wcuID" : "04-1B-94-00-1D-2A", "type" : "mqtt", "assignmentName" : "Trigger_test", "taskCreatorID" : "user123", "status" : { "code" : 2, "text" : "RUNNING" }, "lastUploadDate" : "2024-03-14T09:31:06Z", "creationDate" : "2024-03-12T11:31:06Z" } }