EventstreamResult

Result of polling the eventstream.

Fields

FieldDescription
moreresults
bool 
(required)

The stream possibly contains more events, polling might need to catch up

nextid
string 
(required)

Id to use as startid in next poll

Example value:"0"
results
EventstreamItem[] 
(required)

The results of polling the stream

Example

1{
2    "moreresults": false,
3    "nextid": "0",
4    "results": null
5}