
com.nedap.retail.messages.organization.Organization 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.organization;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Organization implements Serializable {
private static final long serialVersionUID = -646278093791631036L;
public enum Type {
ORGANIZATION, BUSINESS_PARTNER
}
@JsonProperty("organization_id")
public long organizationId;
public Type type;
public String name;
public Organization() {
}
public Organization(final long id, final Type type, final String name) {
this.organizationId = id;
this.type = type;
this.name = name;
}
@Override
public String toString() {
return "Organization{" + "id=" + organizationId + ", type=" + type + ", name=" + name + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy