
com.nedap.retail.messages.article.Size 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 Size implements Serializable {
private static final long serialVersionUID = -1475858032925556829L;
public String description;
public String region;
public Size() {
}
public Size(final String description, final String region) {
this.description = description;
this.region = region;
}
@Override
public String toString() {
return "[" + region + "|" + description + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy