Encapsulates the properties of a SubscriptionEvaluationRequest. It defines the subscription to be evaluated and time interval for events used in evaluation.

interface SubscriptionEvaluationRequest {
    minEventsCreatedDate: Date;
    subscriptionCreateParameters?: NotificationSubscriptionCreateParameters;
}

Properties

minEventsCreatedDate: Date

The min created date for the events used for matching in UTC. Use all events created since this date

subscriptionCreateParameters?: NotificationSubscriptionCreateParameters

User or group that will receive notifications for events matching the subscription's filter criteria. If not specified, defaults to the calling user.