import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_CustProjSlsOrdText" of service "CPD.SC_PROJ_ENGMT_CREATE_UPD_SRV". */ export declare class CustProjSlsOrdText extends Entity implements CustProjSlsOrdTextType { /** * Technical entity name for CustProjSlsOrdText. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the CustProjSlsOrdText entity */ static _keys: string[]; /** * Commercial Project ID. * Identifies a customer or internal project. * Maximum length: 40. */ customerProject: 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; /** * Sales Order. * Maximum length: 10. * @nullable */ salesOrder?: DeserializedType | null; } export interface CustProjSlsOrdTextType { customerProject: DeserializedType; language: DeserializedType; longTextId: DeserializedType; longText?: DeserializedType | null; salesOrder?: DeserializedType | null; } //# sourceMappingURL=CustProjSlsOrdText.d.ts.map