View Source
Class DataTypeDisplay
Represents a data type that is being edited
Inheritance
System.Object
Assembly: Umbraco.Core.dll
Syntax
[DataContract(Name = "dataType", Namespace = "")]
public class DataTypeDisplay : DataTypeBasic, INotificationModel
Constructors
View Source
DataTypeDisplay()
Declaration
Properties
View Source
AvailableEditors
Declaration
[DataMember(Name = "availableEditors")]
public IEnumerable<PropertyEditorBasic>? AvailableEditors { get; set; }
Property Value
View Source
Notifications
This is used to add custom localized messages/strings to the response for the app to use for localized UI purposes.
Declaration
[DataMember(Name = "notifications")]
public List<BackOfficeNotification> Notifications { get; }
Property Value
View Source
PreValues
Declaration
[DataMember(Name = "preValues")]
public IEnumerable<DataTypeConfigurationFieldDisplay>? PreValues { get; set; }
Property Value
View Source
SelectedEditor
The alias of the property editor
Declaration
[DataMember(Name = "selectedEditor", IsRequired = true)]
[Required]
public string SelectedEditor { get; set; }
Property Value
Type |
Description |
System.String |
|