import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_ProductPlantText" of service "API_PRODUCT_SRV". */ export declare class ProductPlantText extends Entity implements ProductPlantTextType { /** * Technical entity name for ProductPlantText. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the ProductPlantText entity */ static _keys: string[]; /** * Material Number. * Alphanumeric key uniquely identifying the material. * Maximum length: 40. */ product: DeserializedType; /** * Plant. * Key uniquely identifying a plant. * Maximum length: 4. */ plant: DeserializedType; /** * String. * @nullable */ longText?: DeserializedType | null; } export interface ProductPlantTextType { product: DeserializedType; plant: DeserializedType; longText?: DeserializedType | null; } //# sourceMappingURL=ProductPlantText.d.ts.map