Class PullRequestParticipantStatusUpdatedEvent

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
PullRequestParticipantReviewedEvent, PullRequestParticipantUnapprovedEvent

public class PullRequestParticipantStatusUpdatedEvent extends PullRequestEvent
Base class for events raised when a participant updates its status on a pull request.
See Also:
  • Constructor Details

    • PullRequestParticipantStatusUpdatedEvent

      protected PullRequestParticipantStatusUpdatedEvent(@Nonnull Object source, @Nonnull PullRequest pullRequest, @Nonnull PullRequestAction action, @Nonnull PullRequestParticipant participant, @Nonnull PullRequestParticipantStatus previousStatus)
      Constructs a new PullRequestEvent. All parameters are required.
      Parameters:
      source - the component raising the event
      pullRequest - the affected pull request
      action - the action performed on the pull request
      participant - the participant whose status has been updatedStatus
      previousStatus - the participant status before the update
  • Method Details