import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_ServiceQuotationItemText" of service "API_SERVICE_QUOTATION_SRV". */ export declare class ServiceQuotationItemText extends Entity implements ServiceQuotationItemTextType { /** * Technical entity name for ServiceQuotationItemText. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the ServiceQuotationItemText entity */ static _keys: string[]; /** * Transaction ID. * Number which identifies the transaction document. It is unique for the respective business transaction category. * Maximum length: 10. */ serviceQuotation: DeserializedType; /** * Shortened Item Number in Document. * Maximum length: 6. */ serviceQuotationItem: 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; /** * Text ID. * The text ID defines the various types of texts related to a text object. For example, the object "TEXT" (standard texts) can have the following text IDs: * ST for user-specific standard texts (individual texts)SYST for cross-application system textsvarious IDs for specific application departments. You must have the appropriate access authorization in order to access these texts. * Maximum length: 4. */ longTextId: DeserializedType; /** * String. * @nullable */ longText?: DeserializedType | null; } export interface ServiceQuotationItemTextType { serviceQuotation: DeserializedType; serviceQuotationItem: DeserializedType; language: DeserializedType; longTextId: DeserializedType; longText?: DeserializedType | null; } //# sourceMappingURL=ServiceQuotationItemText.d.ts.map