Real time event (SignalR) for a completion errors on a pull request

interface CompletionErrorsEvent {
    errorMessage?: string;
    eventId?: string;
    pullRequestId?: number;
}

Hierarchy (View Summary)

Properties

errorMessage?: string

The error message associated with the completion error

eventId?: string

The id of this event. Can be used to track send/receive state between client and server.

pullRequestId?: number

The id of the pull request this event was generated for.