import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "WorkItemSet" of service "CPD.SC_PROJ_ENGMT_CREATE_UPD_SRV". */ export declare class WorkItemSet extends Entity implements WorkItemSetType { /** * Technical entity name for WorkItemSet. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the WorkItemSet entity */ static _keys: string[]; /** * Commercial Project ID. * Identifies a customer or internal project. * Maximum length: 40. */ projectId: DeserializedType; /** * Plan Item. * Maximum length: 50. */ workPackageId: DeserializedType; /** * Plan Item Description. * Maximum length: 60. */ workPackageName: DeserializedType; /** * Work Item ID. * Defines a specific activity performed in a work package. * You assign work items to a work package from a predefined list of work items or you create user-defined ones in a work package. Thereafter, you assign them to resources to plan activities for the team.You define work items in the configuration activity Define Work Items. * Maximum length: 10. */ workitem: DeserializedType; /** * Work Item Name. * Maximum length: 40. * @nullable */ workitemname?: DeserializedType | null; } export interface WorkItemSetType { projectId: DeserializedType; workPackageId: DeserializedType; workPackageName: DeserializedType; workitem: DeserializedType; workitemname?: DeserializedType | null; } //# sourceMappingURL=WorkItemSet.d.ts.map