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

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

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 void setSymbol(String symbol) {
        this.symbol = symbol;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public AssetType getAssetType() {
        return assetType;
    }
    public void setAssetType(AssetType assetType) {
        this.assetType = assetType;
    }
    public int getRoundLotSize() {
        return roundLotSize;
    }
    public void setRoundLotSize(int roundLotSize) {
        this.roundLotSize = roundLotSize;
    }
    public Exchange getExchange() {
        return exchange;
    }
    public void setExchange(Exchange exchange) {
        this.exchange = exchange;
    }
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy