/** @description The type of a manufacturer product identifier. A product code assigned by a manufacturer, producer, or supplier. Custom denotes a code that is unique to the manufacturer's own system and does not follow an internationally recognised standard. */
export enum ManufacturerProductIdentifierType {
  /** @description UNDEFINED */
  UNDEFINED = 'UNDEFINED',
  /** @description GTIN */
  GTIN = 'GTIN',
  /** @description EAN */
  EAN = 'EAN',
  /** @description ISBN */
  ISBN = 'ISBN',
  /** @description UPC */
  UPC = 'UPC',
  /** @description MPN */
  MPN = 'MPN',
  /** @description SKU */
  SKU = 'SKU',
}
