File tree 1 file changed +10
-0
lines changed
src/main/java/org/gitlab4j/api/models
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 6
6
import org .gitlab4j .api .utils .JacksonJsonEnumHelper ;
7
7
8
8
import java .io .Serializable ;
9
+ import java .util .Date ;
9
10
10
11
public class Environment implements Serializable {
11
12
private static final long serialVersionUID = 1L ;
@@ -38,6 +39,7 @@ public String toString() {
38
39
private String tier ;
39
40
private EnvironmentState state ;
40
41
private Deployment lastDeployment ;
42
+ private Date autoStopAt ;
41
43
42
44
public Long getId () {
43
45
return id ;
@@ -95,6 +97,14 @@ public void setLastDeployment(Deployment lastDeployment) {
95
97
this .lastDeployment = lastDeployment ;
96
98
}
97
99
100
+ public Date getAutoStopAt () {
101
+ return autoStopAt ;
102
+ }
103
+
104
+ public void setAutoStopAt (Date autoStopAt ) {
105
+ this .autoStopAt = autoStopAt ;
106
+ }
107
+
98
108
@ Override
99
109
public String toString () {
100
110
return (JacksonJson .toJsonString (this ));
You can’t perform that action at this time.
0 commit comments