RoomEventFilter

@Serializable
data class RoomEventFilter(val limit: Long? = null, val notSenders: Set<String>? = null, val notTypes: Set<String>? = null, val senders: Set<String>? = null, val types: Set<String>? = null, val lazyLoadMembers: Boolean? = null, val includeRedundantMembers: Boolean? = null, val notRooms: Set<String>? = null, val rooms: Set<String>? = null, val containsUrl: Boolean? = 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, lazyLoadMembers: Boolean? = null, includeRedundantMembers: Boolean? = null, notRooms: Set<String>? = null, rooms: Set<String>? = null, containsUrl: Boolean? = null)

Properties

Link copied to clipboard
@SerialName(value = "contains_url")
val containsUrl: Boolean?
Link copied to clipboard
@SerialName(value = "include_redundant_members")
val includeRedundantMembers: Boolean?
Link copied to clipboard
@SerialName(value = "lazy_load_members")
val lazyLoadMembers: Boolean?
Link copied to clipboard
@SerialName(value = "limit")
val limit: Long?
Link copied to clipboard
@SerialName(value = "not_rooms")
val notRooms: Set<String>?
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 = "rooms")
val rooms: Set<String>?
Link copied to clipboard
@SerialName(value = "senders")
val senders: Set<String>?
Link copied to clipboard
@SerialName(value = "types")
val types: Set<String>?