import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "WorkPackageFunctionSet" of service "CPD.SC_PROJ_ENGMT_CREATE_UPD_SRV". */ export declare class WorkPackageFunctionSet extends Entity implements WorkPackageFunctionSetType { /** * Technical entity name for WorkPackageFunctionSet. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the WorkPackageFunctionSet 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 Package Function ID. * Identifies the possible ways in which cost can be posted to a work package. * Users can manage work packages by allowing or blocking cost posting.This field must be used together with the field Work Package Function is Blocked. * Maximum length: 4. */ workPackageFunctionId: DeserializedType; /** * Work Package Function Name. * Maximum length: 60. */ workPackageFunctionName: DeserializedType; /** * Work Package Function is Blocked. * Indicates whether a work package function is blocked. * You use this field to manage cost posting on work packages. The possible values are:' ' - AllowedX - BlockedThis field must be used together with the field Work Package Function ID. ‫ ‬. * Maximum length: 1. * @nullable */ workPackageFunctionIsBlocked?: DeserializedType | null; } export interface WorkPackageFunctionSetType { projectId: DeserializedType; workPackageId: DeserializedType; workPackageName: DeserializedType; workPackageFunctionId: DeserializedType; workPackageFunctionName: DeserializedType; workPackageFunctionIsBlocked?: DeserializedType | null; } //# sourceMappingURL=WorkPackageFunctionSet.d.ts.map