Skip to content

Commit 9fbcbf9

Browse files
committed
Added id property.
1 parent f3c2200 commit 9fbcbf9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main/java/org/gitlab4j/api/webhook/EventProject.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
@XmlAccessorType(XmlAccessType.FIELD)
99
public class EventProject {
1010

11+
private Integer id;
1112
private String name;
1213
private String description;
1314
private String webUrl;
@@ -23,6 +24,14 @@ public class EventProject {
2324
private String sshUrl;
2425
private String httpUrl;
2526

27+
public Integer getId() {
28+
return id;
29+
}
30+
31+
public void setId(Integer id) {
32+
this.id = id;
33+
}
34+
2635
public String getName() {
2736
return name;
2837
}

0 commit comments

Comments
 (0)