import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import { SalesQuotation, SalesQuotationType } from './SalesQuotation'; import { SalesQuotationItem, SalesQuotationItemType } from './SalesQuotationItem'; /** * This class represents the entity "A_SalesQuotationItemText" of service "API_SALES_QUOTATION_SRV". */ export declare class SalesQuotationItemText extends Entity implements SalesQuotationItemTextType { /** * Technical entity name for SalesQuotationItemText. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the SalesQuotationItemText entity */ static _keys: string[]; /** * Sales Quotation. * Maximum length: 10. */ salesQuotation: DeserializedType; /** * Sales Quotation Item. * Maximum length: 6. */ salesQuotationItem: 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; /** * One-to-one navigation property to the [[SalesQuotation]] entity. */ toSalesQuotation?: SalesQuotation | null; /** * One-to-one navigation property to the [[SalesQuotationItem]] entity. */ toSalesQuotationItem?: SalesQuotationItem | null; } export interface SalesQuotationItemTextType { salesQuotation: DeserializedType; salesQuotationItem: DeserializedType; language: DeserializedType; longTextId: DeserializedType; longText?: DeserializedType | null; toSalesQuotation?: SalesQuotationType | null; toSalesQuotationItem?: SalesQuotationItemType | null; } //# sourceMappingURL=SalesQuotationItemText.d.ts.map