FilterItems

data class FilterItems(val field: String? = null, val values: List<String>? = null) : ConvertibleToJava<FilterItems>

Will contain the filter name and values to operate on

Constructors

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

Properties

Link copied to clipboard
val field: String? = null

The name of the field we would like to filter

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

List of values to filter the current field by

Functions

Link copied to clipboard
open override fun toJava(): FilterItems