import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_ProductDescription" of service "API_REALSUBSTANCE". */ export declare class ProductDescription extends Entity implements ProductDescriptionType { /** * Technical entity name for ProductDescription. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the ProductDescription entity */ static _keys: string[]; /** * Product Number. * Alphanumeric key uniquely identifying the product. * Maximum length: 40. */ product: DeserializedType; /** * Language Key. * The language key indicates * - the language in which texts are displayed,- the language in which you enter texts,- the language in which the system prints texts. * Maximum length: 2. */ language: DeserializedType; /** * Product Description. * Text containing up to 40 characters that describes the product in detail. * You can enter one product description in each of any number of languages.In principle, you enter the product description on the data screen of the first user department for which you enter data, and in your logon language. You can overwrite the product description on the Basic Data screen. * Maximum length: 40. * @nullable */ productDescription?: DeserializedType | null; } export interface ProductDescriptionType { product: DeserializedType; language: DeserializedType; productDescription?: DeserializedType | null; } //# sourceMappingURL=ProductDescription.d.ts.map