
com.nedap.retail.messages.article.Price Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messages Show documentation
Show all versions of messages Show documentation
Client and messages for communicating with the Nedap Retail APIs
The newest version!
package com.nedap.retail.messages.article;
import java.io.Serializable;
public class Price implements Serializable {
private static final long serialVersionUID = 7065318648199132728L;
public String currency;
public String region;
public Double amount;
public Price() {
}
public Price(final String currency, final String region, final Double amount) {
this.currency = currency;
this.region = region;
this.amount = amount;
}
@Override
public String toString() {
return "[" + region + "|" + currency + "|" + amount + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy