Requests, Notifications and Subscriptions from the History feature

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

Properties