Encapsulates the subscription evaluation results. It defines the Date Interval that was used, number of events evaluated and events and notifications results

interface SubscriptionEvaluationResult {
    evaluationJobStatus?: EvaluationOperationStatus;
    events?: EventsEvaluationResult;
    id?: string;
    notifications?: NotificationsEvaluationResult;
}

Properties

evaluationJobStatus?: EvaluationOperationStatus

Subscription evaluation job status

Subscription evaluation events results.

id?: string

The requestId which is the subscription evaluation jobId

Subscription evaluation notification results.