com.flagsense.request.FetchLatestRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Java SDK for consuming flagsense services
package com.flagsense.request;
import com.flagsense.enums.Environment;
public class FetchLatestRequest {
private Environment environment;
private Long lastUpdatedOn;
public FetchLatestRequest(Environment environment, Long lastUpdatedOn) {
this.environment = environment;
this.lastUpdatedOn = lastUpdatedOn;
}
public Environment getEnvironment() {
return environment;
}
public Long getLastUpdatedOn() {
return lastUpdatedOn;
}
}