Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 1.82 KB

PropertyDescriptorDTO.md

File metadata and controls

22 lines (17 loc) · 1.82 KB

PropertyDescriptorDTO

Properties

Name Type Description Notes
name String The name for the property. [optional]
displayName String The human readable name for the property. [optional]
description String The description for the property. Used to relay additional details to a user or provide a mechanism of documenting intent. [optional]
defaultValue String The default value for the property. [optional]
allowableValues List<AllowableValueEntity> Allowable values for the property. If empty then the allowed values are not constrained. [optional]
required Boolean Whether the property is required. [optional]
sensitive Boolean Whether the property is sensitive and protected whenever stored or represented. [optional]
dynamic Boolean Whether the property is dynamic (user-defined). [optional]
supportsEl Boolean Whether the property supports expression language. [optional]
expressionLanguageScope String Scope of the Expression Language evaluation for the property. [optional]
identifiesControllerService String If the property identifies a controller service this returns the fully qualified type. [optional]
identifiesControllerServiceBundle BundleDTO If the property identifies a controller service this returns the bundle of the type, null otherwise. [optional]
dependencies List<PropertyDependencyDTO> A list of dependencies that must be met in order for this Property to be relevant. If any of these dependencies is not met, the property described by this Property Descriptor is not relevant. [optional]