SearchFilterValue

sealed class SearchFilterValue

A filter value. Exactly one of stringValue or longValue must be specified.

Inheritors

Types

Link copied to clipboard
data class LongValue(val value: Long) : SearchFilterValue

A long integer filter value.

Link copied to clipboard
Link copied to clipboard
data class StringValue(val value: String) : SearchFilterValue

A string filter value.

Functions

Link copied to clipboard

Casts this SearchFilterValue as a LongValue and retrieves its kotlin.Long value. Throws an exception if the SearchFilterValue is not a LongValue.

Link copied to clipboard

Casts this SearchFilterValue as a LongValue and retrieves its kotlin.Long value. Returns null if the SearchFilterValue is not a LongValue.

Link copied to clipboard

Casts this SearchFilterValue as a StringValue and retrieves its kotlin.String value. Throws an exception if the SearchFilterValue is not a StringValue.

Link copied to clipboard

Casts this SearchFilterValue as a StringValue and retrieves its kotlin.String value. Returns null if the SearchFilterValue is not a StringValue.