We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c75156e commit cbd2a8eCopy full SHA for cbd2a8e
src/main/java/com/spotify/github/v3/prs/Comment.java
@@ -129,4 +129,8 @@ public interface Comment extends UpdateTracking {
129
/** Node ID */
130
@Nullable
131
String nodeId();
132
+
133
+ /** Pull request review ID. */
134
+ @Nullable
135
+ Long pullRequestReviewId();
136
}
src/test/java/com/spotify/github/v3/clients/PullRequestClientTest.java
@@ -371,5 +371,6 @@ public void testCreateCommentReply() throws Throwable {
371
assertThat(comment.line(), is(2));
372
assertThat(comment.originalLine(), is(2));
373
assertThat(comment.side(), is("RIGHT"));
374
+ assertThat(comment.pullRequestReviewId(), is(42L));
375
376
0 commit comments