Encapsulates events result properties. It defines the total number of events used and the number of matched events.

interface EventsEvaluationResult {
    count?: number;
    matchedCount?: number;
}

Properties

count?: number

Count of events evaluated.

matchedCount?: number

Count of matched events.