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

io.mstream.trader.simulation.stocks.datafeed.data.StockPrice Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
package io.mstream.trader.simulation.stocks.datafeed.data;


import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.inject.assistedinject.Assisted;

import javax.inject.Inject;


public class StockPrice {

    private final String value;

    @JsonCreator
    @Inject
    public StockPrice(
            @Assisted("value")
            @JsonProperty("value") String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy