EventQuery

data class EventQuery(val derivationGroups: List<String>?, val eventTypes: List<String>?, val sources: List<ExternalSource>?)

Fields for filtering events as they are queried.

Constructors

Link copied to clipboard
constructor(derivationGroup: String?, eventType: String?, source: ExternalSource?)
constructor()
constructor(derivationGroups: List<String>?, eventTypes: List<String>?, sources: List<ExternalSource>?)

Properties

Link copied to clipboard

A nullable list of derivation groups; the event must belong to one of them if present.

Link copied to clipboard

A nullable list of eventTypes; the event must belong to one of them if present.

Link copied to clipboard

A nullable list of sources (described as a tuple of the source's (key, derivation group name)); the event must belong to one of them if present.