@@ -50,6 +50,7 @@ public class MergeRequestFilter implements Serializable {
50
50
private Long authorId ;
51
51
52
52
private Long assigneeId ;
53
+ private Long reviewerId ;
53
54
private String myReactionEmoji ;
54
55
private String sourceBranch ;
55
56
private String targetBranch ;
@@ -278,11 +279,24 @@ public void setAssigneeId(Long assigneeId) {
278
279
this .assigneeId = assigneeId ;
279
280
}
280
281
282
+ public Long getReviewerId () {
283
+ return reviewerId ;
284
+ }
285
+
286
+ public void setReviewerId (Long reviewerId ) {
287
+ this .reviewerId = reviewerId ;
288
+ }
289
+
281
290
public MergeRequestFilter withAssigneeId (Long assigneeId ) {
282
291
this .assigneeId = assigneeId ;
283
292
return (this );
284
293
}
285
294
295
+ public MergeRequestFilter withReviewerId (Long reviewerId ) {
296
+ this .reviewerId = reviewerId ;
297
+ return (this );
298
+ }
299
+
286
300
public String getMyReactionEmoji () {
287
301
return myReactionEmoji ;
288
302
}
@@ -511,6 +525,7 @@ public GitLabForm getQueryParams() {
511
525
.withParam ("updated_before" , updatedBefore )
512
526
.withParam ("scope" , scope )
513
527
.withParam ("assignee_id" , assigneeId )
528
+ .withParam ("reviewer_id" , reviewerId )
514
529
.withParam ("my_reaction_emoji" , myReactionEmoji )
515
530
.withParam ("source_branch" , sourceBranch )
516
531
.withParam ("target_branch" , targetBranch )
0 commit comments