EventFilter

@Serializable
data class EventFilter(val limit: Long? = null, val notSenders: Set<String>? = null, val notTypes: Set<String>? = null, val senders: Set<String>? = null, val types: Set<String>? = null)

Constructors

Link copied to clipboard
constructor(limit: Long? = null, notSenders: Set<String>? = null, notTypes: Set<String>? = null, senders: Set<String>? = null, types: Set<String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "limit")
val limit: Long?
Link copied to clipboard
@SerialName(value = "not_senders")
val notSenders: Set<String>?
Link copied to clipboard
@SerialName(value = "not_types")
val notTypes: Set<String>?
Link copied to clipboard
@SerialName(value = "senders")
val senders: Set<String>?
Link copied to clipboard
@SerialName(value = "types")
val types: Set<String>?