All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flagsense.request.FetchLatestRequest Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy