import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_ProductInspectionText" of service "API_PRODUCT_SRV". */ export declare class ProductInspectionText extends Entity implements ProductInspectionTextType { /** * Technical entity name for ProductInspectionText. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the ProductInspectionText entity */ static _keys: string[]; /** * Material Number. * Alphanumeric key uniquely identifying the material. * 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; /** * String. * @nullable */ longText?: DeserializedType | null; } export interface ProductInspectionTextType { product: DeserializedType; language: DeserializedType; longText?: DeserializedType | null; } //# sourceMappingURL=ProductInspectionText.d.ts.map