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

io.mstream.trader.simulation.stocks.DateRange Maven / Gradle / Ivy

package io.mstream.trader.simulation.stocks;


import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;


public class DateRange {

    private final String from;
    private final String to;

    @JsonCreator
    public DateRange(
            @JsonProperty("from") String from,
            @JsonProperty("to") String to) {
        this.from = from;
        this.to = to;
    }

    public String getFrom() {
        return from;
    }

    public String getTo() {
        return to;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy