import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_ProductUnitsOfMeasureEAN" of service "API_PRODUCT_SRV". */ export declare class ProductUnitsOfMeasureEan extends Entity implements ProductUnitsOfMeasureEanType { /** * Technical entity name for ProductUnitsOfMeasureEan. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the ProductUnitsOfMeasureEan entity */ static _keys: string[]; /** * Material Number. * Alphanumeric key uniquely identifying the material. * Maximum length: 40. */ product: DeserializedType; /** * Unit of Measure for Display. * Specifies the unit of measure in which the quantity represented is displayed. * Maximum length: 3. */ alternativeUnit: DeserializedType; /** * Consecutive Number. * Maximum length: 5. */ consecutiveNumber: DeserializedType; /** * International Article Number (EAN/UPC). * Glossary definition. * Maximum length: 18. * @nullable */ productStandardId?: DeserializedType | null; /** * Category of Global Trade Item Number (GTIN). * Defines how the system determines a Global Trade Item Number (GTIN) to be assigned internally, and which check criteria (check digit, prefix, and so on) a GTIN of this category must fulfil. * Maximum length: 2. * @nullable */ internationalArticleNumberCat?: DeserializedType | null; /** * Indicator: Main EAN. * Specifies that the International Article Number (EAN) is the main EAN for the unit of measure. * If there are several EANs for each unit of measure, you must always identify one of them as the main EAN. * @nullable */ isMainGlobalTradeItemNumber?: DeserializedType | null; } export interface ProductUnitsOfMeasureEanType { product: DeserializedType; alternativeUnit: DeserializedType; consecutiveNumber: DeserializedType; productStandardId?: DeserializedType | null; internationalArticleNumberCat?: DeserializedType | null; isMainGlobalTradeItemNumber?: DeserializedType | null; } //# sourceMappingURL=ProductUnitsOfMeasureEan.d.ts.map