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

com.greenback.kit.model.ExchangeRate Maven / Gradle / Ivy

package com.greenback.kit.model;

public class ExchangeRate {
    
    private Double from;
    private Double rate;
    private String currencyCode;
    private Double to;
    private ExchangeRateType type;

    public Double getFrom() {
        return from;
    }

    public void setFrom(Double from) {
        this.from = from;
    }

    public Double getRate() {
        return rate;
    }

    public void setRate(Double rate) {
        this.rate = rate;
    }

    public String getCurrencyCode() {
        return currencyCode;
    }

    public void setCurrencyCode(String currencyCode) {
        this.currencyCode = currencyCode;
    }

    public Double getTo() {
        return to;
    }

    public void setTo(Double to) {
        this.to = to;
    }

    public ExchangeRateType getType() {
        return type;
    }

    public void setType(ExchangeRateType type) {
        this.type = type;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy