@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
18 lines (17 loc) • 624 B
text/typescript
/** @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',
}