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

com.silanis.esl.sdk.Price Maven / Gradle / Ivy

There is a newer version: 11.59.0
Show newest version
package com.silanis.esl.sdk;

public class Price{

    private Integer amount = 0;
    private Currency currency;

    public void setAmount(Integer amount){
        this.amount = amount;
    }

    public Integer getAmount(){
        return amount;
    }

    public void setCurrency(Currency currency){
        this.currency = currency;
    }

    public Currency getCurrency(){
        return currency;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy