File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
src/main/java/com/featureprobe/sdk/server/model Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 66
77 <groupId >com.featureprobe</groupId >
88 <artifactId >server-sdk-java</artifactId >
9- <version >1.4.0 </version >
9+ <version >1.4.1-SNAPSHOT </version >
1010 <name >server-sdk-java</name >
1111 <url >https://github.com/FeatureProbe/server-sdk-java</url >
1212 <description >FeatureProbe Server Side SDK for Java</description >
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ public final class Toggle {
1414
1515 private Boolean enabled ;
1616
17+ private Boolean trackAccessEvents ;
18+
19+ private Long lastModified ;
20+
1721 private Long version ;
1822
1923 private Serve disabledServe ;
@@ -140,4 +144,20 @@ public void setForClient(Boolean forClient) {
140144 this .forClient = forClient ;
141145 }
142146
147+ public void setTrackAccessEvents (Boolean trackAccessEvents ) {
148+ this .trackAccessEvents = trackAccessEvents ;
149+ }
150+
151+ public Boolean getTrackAccessEvents () {
152+ return trackAccessEvents ;
153+ }
154+
155+ public void setLastModified (Long lastModified ) {
156+ this .lastModified = lastModified ;
157+ }
158+
159+ public Long getLastModified () {
160+ return lastModified ;
161+ }
162+
143163}
You can’t perform that action at this time.
0 commit comments