File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
src/main/java/org/gitlab4j/api/models Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 66import org .gitlab4j .api .utils .JacksonJsonEnumHelper ;
77
88import java .io .Serializable ;
9+ import java .util .Date ;
910
1011public 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 ));
You can’t perform that action at this time.
0 commit comments