AnalyzerFilter

data class AnalyzerFilter(val contains: List<String>? = null, val eq: List<String>? = null, val exists: Boolean? = null, val neq: List<String>? = null, val property: String)

Constructors

Link copied to clipboard
constructor(contains: List<String>? = null, eq: List<String>? = null, exists: Boolean? = null, neq: List<String>? = null, property: String)

Types

Link copied to clipboard
object Companion

Properties

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

A "contains" condition to match for the rule.

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

An "equals" condition to match for the rule.

Link copied to clipboard
val exists: Boolean? = null

An "exists" condition to match for the rule.

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

A "not equal" condition to match for the rule.

Link copied to clipboard

The property used to define the criteria in the filter for the rule.