File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
src/main/java/org/gitlab4j/api/webhook Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ public class EventMergeRequest {
60
60
private Integer timeEstimate ;
61
61
private Duration humanTimeEstimate ;
62
62
private List <Long > assigneeIds ;
63
+ private List <Long > reviewerIds ;
63
64
64
65
public Long getAssigneeId () {
65
66
return this .assigneeId ;
@@ -437,6 +438,14 @@ public void setAssigneeIds(List<Long> assigneeIds) {
437
438
this .assigneeIds = assigneeIds ;
438
439
}
439
440
441
+ public List <Long > getReviewerIds () {
442
+ return reviewerIds ;
443
+ }
444
+
445
+ public void setReviewerIds (List <Long > reviewerIds ) {
446
+ this .reviewerIds = reviewerIds ;
447
+ }
448
+
440
449
@ Override
441
450
public String toString () {
442
451
return (JacksonJson .toJsonString (this ));
Original file line number Diff line number Diff line change 3
3
import java .util .List ;
4
4
5
5
import org .gitlab4j .api .models .Assignee ;
6
+ import org .gitlab4j .api .models .Reviewer ;
6
7
import org .gitlab4j .api .models .User ;
7
8
import org .gitlab4j .api .utils .JacksonJson ;
8
9
@@ -18,6 +19,7 @@ public class MergeRequestEvent extends AbstractEvent {
18
19
private List <EventLabel > labels ;
19
20
private MergeRequestChanges changes ;
20
21
private List <Assignee > assignees ;
22
+ private List <Reviewer > reviewers ;
21
23
22
24
public String getObjectKind () {
23
25
return (OBJECT_KIND );
@@ -84,6 +86,14 @@ public void setAssignees(List<Assignee> assignees) {
84
86
this .assignees = assignees ;
85
87
}
86
88
89
+ public List <Reviewer > getReviewers () {
90
+ return reviewers ;
91
+ }
92
+
93
+ public void setReviewers (List <Reviewer > reviewers ) {
94
+ this .reviewers = reviewers ;
95
+ }
96
+
87
97
public static class ObjectAttributes extends EventMergeRequest {
88
98
}
89
99
You can’t perform that action at this time.
0 commit comments