Requests, Notifications and Subscriptions from the History feature

interface HistoryMessages {
    notifications:
        | ReportInitExceptionNotification
        | ReportPageExceptionNotification;
    requests: InitialSetupRequest
    | QueryRequest;
}

Properties