Skip to content

Commit 00b4feb

Browse files
add deploymentId to DeploymentEvent
1 parent db1a758 commit 00b4feb

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Diff for: src/main/java/org/gitlab4j/api/webhook/DeploymentEvent.java

+9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ public class DeploymentEvent extends AbstractEvent {
1111
private String status;
1212
private String statusChangedAt;
1313
private Long deployableId;
14+
private Long deploymentId;
1415
private String deployableUrl;
1516
private String environment;
1617
private EventProject project;
@@ -54,6 +55,14 @@ public void setDeployableId(Long deployableId) {
5455
this.deployableId = deployableId;
5556
}
5657

58+
public Long getDeploymentId() {
59+
return deploymentId;
60+
}
61+
62+
public void setDeploymentId(Long deploymentId) {
63+
this.deploymentId = deploymentId;
64+
}
65+
5766
public String getDeployableUrl() {
5867
return deployableUrl;
5968
}

0 commit comments

Comments
 (0)