StringNotInFilterResponse

data class StringNotInFilterResponse(val key: String? = null, val operatorType: String, val values: List<String>? = null)

StringNotIn Filter.

Constructors

Link copied to clipboard
constructor(key: String? = null, operatorType: String, values: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val key: String? = null

The field/property in the event based on which you want to filter.

Link copied to clipboard

The operator type used for filtering, e.g., NumberIn, StringContains, BoolEquals and others. Expected value is 'StringNotIn'.

Link copied to clipboard
val values: List<String>? = null

The set of filter values.