File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
gitlab4j-models/src/main/java/org/gitlab4j/api/models Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ public class ApprovalRule implements Serializable {
19
19
private Boolean containsHiddenGroups ;
20
20
private List <User > approvedBy ;
21
21
private Boolean approved ;
22
+ private List <ProtectedBranch > protectedBranches ;
22
23
23
24
public Long getId () {
24
25
return id ;
@@ -108,6 +109,14 @@ public void setApproved(Boolean approved) {
108
109
this .approved = approved ;
109
110
}
110
111
112
+ public List <ProtectedBranch > getProtectedBranches () {
113
+ return protectedBranches ;
114
+ }
115
+
116
+ public void setProtectedBranches (List <ProtectedBranch > protectedBranches ) {
117
+ this .protectedBranches = protectedBranches ;
118
+ }
119
+
111
120
@ Override
112
121
public String toString () {
113
122
return (JacksonJson .toJsonString (this ));
You can’t perform that action at this time.
0 commit comments