import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_CustProjSlsOrdPartner" of service "CPD.SC_PROJ_ENGMT_CREATE_UPD_SRV". */ export declare class CustProjSlsOrdPartner extends Entity implements CustProjSlsOrdPartnerType { /** * Technical entity name for CustProjSlsOrdPartner. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the CustProjSlsOrdPartner entity */ static _keys: string[]; /** * Commercial Project ID. * Identifies a customer or internal project. * Maximum length: 40. */ customerProject: DeserializedType; /** * Partner Function. * The abbreviated form of the name that identifies the partner function. * Maximum length: 2. */ partnerFunction: DeserializedType; /** * Sales Order. * Maximum length: 10. * @nullable */ salesOrder?: DeserializedType | null; /** * Customer Number. * Gives an alphanumeric key, which clearly identifies the customer or vendor in the SAP system. * Maximum length: 10. * @nullable */ businessPartner?: DeserializedType | null; } export interface CustProjSlsOrdPartnerType { customerProject: DeserializedType; partnerFunction: DeserializedType; salesOrder?: DeserializedType | null; businessPartner?: DeserializedType | null; } //# sourceMappingURL=CustProjSlsOrdPartner.d.ts.map