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

com.tecacet.finance.model.Asset Maven / Gradle / Ivy

Go to download

JFApi connects to various Web Services that provide financial data such as stock prices, splits, dividends, and FX rates.

There is a newer version: 1.1.3
Show newest version
package com.tecacet.finance.model;

public class Asset {

    private String symbol;
    private String name;
    private AssetType assetType;
    private int roundLotSize;
    private Exchange exchange;

    public String getSymbol() {
        return symbol;
    }

    public String getName() {
        return name;
    }

    public AssetType getAssetType() {
        return assetType;
    }

    public void setAssetType(AssetType assetType) {
        this.assetType = assetType;
    }

    public int getRoundLotSize() {
        return roundLotSize;
    }

    public Exchange getExchange() {
        return exchange;
    }

    public void setExchange(Exchange exchange) {
        this.exchange = exchange;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy