Skip to content

Commit c527984

Browse files
add autoStopAt to Environment
1 parent 00b4feb commit c527984

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/org/gitlab4j/api/models/Environment.java

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import org.gitlab4j.api.utils.JacksonJsonEnumHelper;
77

88
import java.io.Serializable;
9+
import java.util.Date;
910

1011
public class Environment implements Serializable {
1112
private static final long serialVersionUID = 1L;
@@ -38,6 +39,7 @@ public String toString() {
3839
private String tier;
3940
private EnvironmentState state;
4041
private Deployment lastDeployment;
42+
private Date autoStopAt;
4143

4244
public Long getId() {
4345
return id;
@@ -95,6 +97,14 @@ public void setLastDeployment(Deployment lastDeployment) {
9597
this.lastDeployment = lastDeployment;
9698
}
9799

100+
public Date getAutoStopAt() {
101+
return autoStopAt;
102+
}
103+
104+
public void setAutoStopAt(Date autoStopAt) {
105+
this.autoStopAt = autoStopAt;
106+
}
107+
98108
@Override
99109
public String toString() {
100110
return (JacksonJson.toJsonString(this));

0 commit comments

Comments
 (0)