events property

  1. @JsonKey(name: 'Events')
List<Event>? events
final

Optional element to configure the streaming of events. A client might be interested in receiving all, none or some of the events produced by the device:

  • To get all events: Include the Events element but do not include a filter.
  • To get no events: Do not include the Events element.
  • To get only some events: Include the Events element and include a filter in the element.

Implementation

@JsonKey(name: 'Events')
final List<Event>? events;