EventSubscriptionFilterResponse

data class EventSubscriptionFilterResponse(val advancedFilters: List<Any>? = null, val enableAdvancedFilteringOnArrays: Boolean? = null, val includedEventTypes: List<String>? = null, val isSubjectCaseSensitive: Boolean? = null, val subjectBeginsWith: String? = null, val subjectEndsWith: String? = null)

Filter for the Event Subscription.

Constructors

Link copied to clipboard
constructor(advancedFilters: List<Any>? = null, enableAdvancedFilteringOnArrays: Boolean? = null, includedEventTypes: List<String>? = null, isSubjectCaseSensitive: Boolean? = null, subjectBeginsWith: String? = null, subjectEndsWith: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val advancedFilters: List<Any>? = null

An array of advanced filters that are used for filtering event subscriptions.

Link copied to clipboard

Allows advanced filters to be evaluated against an array of values instead of expecting a singular value.

Link copied to clipboard

A list of applicable event types that need to be part of the event subscription. If it is desired to subscribe to all default event types, set the IncludedEventTypes to null.

Link copied to clipboard

Specifies if the SubjectBeginsWith and SubjectEndsWith properties of the filter should be compared in a case sensitive manner.

Link copied to clipboard

An optional string to filter events for an event subscription based on a resource path prefix. The format of this depends on the publisher of the events. Wildcard characters are not supported in this path.

Link copied to clipboard
val subjectEndsWith: String? = null

An optional string to filter events for an event subscription based on a resource path suffix. Wildcard characters are not supported in this path.