Real time event (SignalR) for a source/target branch update on a pull request

interface BranchUpdatedEvent {
    eventId?: string;
    isSourceUpdate?: boolean;
    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.

isSourceUpdate?: boolean

If true, the source branch of the pull request was updated

pullRequestId?: number

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