Class FlatElementDto
This model contains a flattened represention of an AVA project, which
Inheritance
System.Object
FlatElementDto
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dangl.AVACloud.Client
Assembly: Dangl.AVACloud.Client.dll
Syntax
public class FlatElementDto : INotifyPropertyChanged
Properties
| Improve this Doc View SourceElement
The element itself.
Declaration
[JsonProperty("element", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public IElementDto Element { get; set; }
Property Value
Type | Description |
---|---|
Dangl.AVA.IO.Dto.v1.Interfaces.IElementDto |
ParentElementId
If this is not null, then this contains the id of the parent
element.
Declaration
[JsonProperty("parentElementId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public Guid? ParentElementId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
PreviousElementId
If this is not null, then this contains the id of the previous
element in the hierarchy on the same level.
Declaration
[JsonProperty("previousElementId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public Guid? PreviousElementId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Methods
| Improve this Doc View SourceFromJson(String)
Declaration
public static FlatElementDto FromJson(string data)
Parameters
Type | Name | Description |
---|---|---|
System.String | data |
Returns
Type | Description |
---|---|
FlatElementDto |
RaisePropertyChanged(String)
Declaration
protected virtual void RaisePropertyChanged(string propertyName = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName |
ToJson()
Declaration
public string ToJson()
Returns
Type | Description |
---|---|
System.String |
Events
| Improve this Doc View SourcePropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type | Description |
---|---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged