com.prowidesoftware.swift.model.mx.dic.ProductIdentifier2Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ProductIdentifier2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "ProductIdentifier2Code")
@XmlEnum
public enum ProductIdentifier2Code {
/**
* Product identifier assigned by the buyer.
*
*/
BINR,
/**
* A code to identify a product based on applicable commercial conditions.
*
*/
COMD,
/**
* The unique EAN (European Article Number) code.
*
*/
EANC,
/**
* Classification of goods as developed by the Customs Cooperation council.
*
*/
HRTR,
/**
* Product identifier as assigned by the manufacturer.
*
*/
MANI,
/**
* Reference number assigned by the manufacturer to differentiate variations in similar products in a class or group.
*
*/
MODL,
/**
* Reference assigned by the manufacturer to a product part.
*
*/
PART,
/**
* Product identifier used by the retail industry.
*
*/
QOTA,
/**
* Identification of the style of a product.
*
*/
STYL,
/**
* Number assigned to an article by the supplier of that article.
*
*/
SUPI,
/**
* Number assigned to a manufacturer's product by the Product Code Council.
*
*/
UPCC;
public String value() {
return name();
}
public static ProductIdentifier2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy