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