Base contract for a real time pull request event (SignalR)

interface RealTimePullRequestEvent {
    eventId?: string;
    pullRequestId?: number;
}

Hierarchy (View Summary)

Properties

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.