Interface PullRequestReviewCommentEvent
-
- All Superinterfaces:
BaseEvent
- All Known Implementing Classes:
ImmutablePullRequestReviewCommentEvent
@Immutable public interface PullRequestReviewCommentEvent extends BaseEvent
Triggered when a commentCommenton a Pull Request's unified diff is created, edited, or deleted (in the Files Changed tab).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringaction()The action that was performed on the comment.Commentcomment()The comment itself.PullRequestItempullRequest()The pull request the comment belongs to.-
Methods inherited from interface com.spotify.github.v3.activity.events.BaseEvent
eventInstallation, repository, sender
-
-
-
-
Method Detail
-
action
@Nullable String action()
The action that was performed on the comment. Can be one of "created", "edited", or "deleted".
-
comment
@Nullable Comment comment()
The comment itself.
-
pullRequest
@Nullable PullRequestItem pullRequest()
The pull request the comment belongs to.
-
-